Skip to content

Instantly share code, notes, and snippets.

@jarulsamy
Created June 6, 2023 06:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jarulsamy/1bbdb4a277161e6a4098320ba981be7f to your computer and use it in GitHub Desktop.
Save jarulsamy/1bbdb4a277161e6a4098320ba981be7f to your computer and use it in GitHub Desktop.
Turn off display in windows
#include <iostream>
#include <windows.h>
int main()
{
SendMessage(HWND_BROADCAST, WM_SYSCOMMAND, SC_MONITORPOWER, 2);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment