如何在Windows中更新壁纸更改

时间:2015-01-18 21:17:55

标签: c++ c windows winapi

使用java代码我编辑了设置为壁纸的jpg图像。现在我想让Windows更新壁纸,以便可以看到变化 由于某些技术问题,我不想用代码设置壁纸。

到目前为止我的代码:

#include <stdio.h>
#include <windows.h>
void broadcast{
    char filepath[225];
    SystemParametersInfo(SPI_GETDESKWALLPAPER, sizeof (filepath) - 1, filepath, SPIF_SENDCHANGE);
}

但是这段代码并没有更新壁纸。我正在使用JNI。

0 个答案:

没有答案