windows c++ 改桌面壁纸
#include <Windows.h>
//改变桌面背景(PictureFullpath:图片完整路径)
void changePicture(string path)
{
SystemParametersInfoA(SPI_SETDESKWALLPAPER, 0, (PVOID)path.c_str(), 0);
}
#include <Windows.h>
//改变桌面背景(PictureFullpath:图片完整路径)
void changePicture(string path)
{
SystemParametersInfoA(SPI_SETDESKWALLPAPER, 0, (PVOID)path.c_str(), 0);
}