2006-05-05 Earnie Boyd <earnie@users.sf.net>

* lib/scrnsave.c: Correct misspelled SPI_SCREENSAVERUNNING to
	SPI_SETSCREENSAVERUNNING.
	* include winuser.h (SPI_SCREENSAVERRUNNING): Remove again.
This commit is contained in:
Earnie Boyd
2006-05-05 12:19:32 +00:00
parent 6936abd4fd
commit f56b825e8a
3 changed files with 8 additions and 3 deletions

View File

@@ -182,7 +182,7 @@ static int LaunchScreenSaver(HWND hParent)
/* don't allow other tasks to get into the foreground */
if (w95 && !fChildPreview)
SystemParametersInfo(SPI_SCREENSAVERRUNNING, TRUE, &foo, 0);
SystemParametersInfo(SPI_SETSCREENSAVERRUNNING, TRUE, &foo, 0);
msg.wParam = 0;
@@ -231,7 +231,7 @@ static int LaunchScreenSaver(HWND hParent)
restore:
/* restore system */
if (w95 && !fChildPreview)
SystemParametersInfo(SPI_SCREENSAVERRUNNING, FALSE, &foo, 0);
SystemParametersInfo(SPI_SETSCREENSAVERRUNNING, FALSE, &foo, 0);
FreeLibrary(hPwdLib);
return msg.wParam;
}