Browse Source

try to make hotkey work?

main
Hendrik Langer 6 years ago
parent
commit
88970f644e
  1. 5
      windows-snapshot-tool/src/main.cpp

5
windows-snapshot-tool/src/main.cpp

@ -66,8 +66,6 @@ int WINAPI WinMain (HINSTANCE hThisInstance,
);
/*Initialize the NOTIFYICONDATA structure only once*/
InitNotifyIconData();
/* Make the window visible on the screen */
ShowWindow (Hwnd, nCmdShow);
/* register hotkey. 0x59 is 'y' so win+y or print *
* see: https://docs.microsoft.com/de-de/windows/desktop/inputdev/virtual-key-codes */
@ -76,6 +74,9 @@ int WINAPI WinMain (HINSTANCE hThisInstance,
FatalAppExit(0, TEXT("Couldn't register hotkey!"));
}
/* Make the window visible on the screen */
ShowWindow (Hwnd, nCmdShow);
/* Run the message loop. It will run until GetMessage() returns 0 */
while (GetMessage (&messages, NULL, 0, 0))
{

Loading…
Cancel
Save