Skip to content

Instantly share code, notes, and snippets.

@tereshenkovav
Created June 26, 2026 08:32
Show Gist options
  • Select an option

  • Save tereshenkovav/77c4210f37450f0a045acb55544cfcbd to your computer and use it in GitHub Desktop.

Select an option

Save tereshenkovav/77c4210f37450f0a045acb55544cfcbd to your computer and use it in GitHub Desktop.
Проверка Caps Lock в игре для Windows
if ((GetKeyState(VK_CAPITAL) & 0x0001)!=0)
AfxMessageBox("Caps Lock ON!");
else
AfxMessageBox("Caps Lock OFF!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment