Skip to content

Instantly share code, notes, and snippets.

@poi519
Last active October 23, 2019 15:11
Show Gist options
  • Save poi519/3efdd6007948c89de8f2382132b0b34a to your computer and use it in GitHub Desktop.
Save poi519/3efdd6007948c89de8f2382132b0b34a to your computer and use it in GitHub Desktop.
Turns off the screen. Build `cl screenoff.c user32.lib`
#include <windows.h>
int main() {
SendMessage(HWND_BROADCAST, WM_SYSCOMMAND, SC_MONITORPOWER, 2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment