README.md

December 5, 2022 ยท View on GitHub

Disable Ctrl Alt Del

Description

This is a very simple function i made to allow you to disable and re-enable Ctrl-Alt-Del. It's short code but works perfectly. =)

More Info

Submitted On
ByAdam Orenstein
LevelBeginner
User Rating4.4 (31 globes from 7 users)
CompatibilityC++ (general)
CategoryCoding Standards
WorldC / C++
Archive File

Source Code


void DisableCtrlAltDelete(bool bDisabled)
{
SystemParametersInfo (SPI_CREENSAVERRUNNING,bDisabled,
NULL,NULL);
}