私のプログラムの一つからいくつか抜粋します。Windows 7では
、システムで唯一の壁紙のファイルがあります。したがって、現在の壁紙を一時ファイルに保存し、壁紙を画像に置き換えます。機能GetRegKeyStrHK()
は、マイライブラリからのものであり、それは、レジストリから値(壁紙のファイル名)を取得します
// Get the system's wallpaper filename from the registry
GetRegKeyStrHK(HKEY_CURRENT_USER, "Control Panel\\Desktop","WallPaper", szFilename, sizeof(szFilename));
// Now copy that file to a temporary file
CopyFile(szFilename, "C:\\myTmpWallpaper.bmp",FALSE);
// Then tell the system to use a new file (it will copy it to the old filename)
SystemParametersInfo (SPI_SETDESKWALLPAPER, 0, (LPSTR) szMyDesktopImage, 0);
:その後、私たちは、元のファイルを復元します。
int GetRegKeyStrHK (HKEY hK, const char *szRoot, const char *szName, char *szValue, int iValueSize)
{
HKEY hkResult;
int iKeyType, bufsize, result;
if (RegOpenKeyEx(hK, szRoot, 0, KEY_READ, &hkResult)
!= ERROR_SUCCESS) return(FALSE); // no such key
bufsize=iValueSize;
result= RegQueryValueEx(hkResult,szName,0, &iKeyType, (BYTE *)szValue, &bufsize);
RegCloseKey (hkResult);
if (result != ERROR_SUCCESS) return(FALSE); // no such name/value pair or buffer too small
return (TRUE);
}
http://superuser.com/questions/153075/setting-an-animated-gif-as-the-desktop-background-on-windows-7 – user463035818
一部策略[てSystemParametersInfo]使用( https://msdn.microsoft.com/en-us/library/windows/desktop/ms724947(v=vs.85).aspx)は、過去にどのように行われたかを見てきました。いくつかのgoogle-fuを押して、あなたが見つけたものを見てください。 – WhozCraig