Sunday, April 19, 2009

[VC++] Disabling Ctrl+Alt+Del key

Simplest way to disable the Ctrl+Alt+Del key press is to use the API SystemParametersInfo(). See the below code snippet.
SystemParametersInfo ( SPI_SETSCREENSAVERRUNNING, TRUE, NULL, 0 );

No comments: