使用C++更换Windows壁纸
使用SystemParametersInfoA接口来更换windows的壁纸,虽然挺好用,但是我想写一个显示GIF壁纸的程序,想法是将GIF的每一个帧连续切换显示,奈何该接口设置壁纸的时间太长,达不到快速切换的效果。
该接口的用法:
#include <windows.h> #include <iostream> #include <string> #include <sstream> ------------------------------------ stringstream imgPath; imgPath<<"path\\img.jpg"; SystemParameteersInfoA(SPI_SETDESKWALLPAPER, 0, (PVOID)imgPath.str().c_str(), SPIF_UPDATEINIFILE | SPIF_SENDCHANGE);
------------ 转载请注明出处 ------------