#include <iostream>
#include <Windows.h>

int main()
{
  const char* path = "C:\\Users\\ajanuw\\Pictures\\Saved Pictures\\1.jpg";
  SystemParametersInfoA(SPI_SETDESKWALLPAPER, 0, (PVOID)path, SPIF_SENDCHANGE);
  return 0;
}

See also:

版权声明:本文为ajanuw原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/ajanuw/p/14223779.html