README.md
December 5, 2022 ยท View on GitHub
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 | |
| By | Adam Orenstein |
| Level | Beginner |
| User Rating | 4.4 (31 globes from 7 users) |
| Compatibility | C++ (general) |
| Category | Coding Standards |
| World | C / C++ |
| Archive File |
Source Code
void DisableCtrlAltDelete(bool bDisabled)
{
SystemParametersInfo (SPI_CREENSAVERRUNNING,bDisabled,
NULL,NULL);
}