G
Guest
In C++ you can detect the screensaver state by using something like:
BOOL b=SystemParametersInfo(SPI_GETSCREENSAVERRUNNING, NULL, &bOn, FALSE);
Is there an equivalent method that I can use in C#? If not, how can I
determine the state of the screen saver?
BOOL b=SystemParametersInfo(SPI_GETSCREENSAVERRUNNING, NULL, &bOn, FALSE);
Is there an equivalent method that I can use in C#? If not, how can I
determine the state of the screen saver?