Skip to content

Instantly share code, notes, and snippets.

@Tocchann
Created September 17, 2021 07:26
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 Tocchann/cc2840dede3b52d0dc00a896e80f75b6 to your computer and use it in GitHub Desktop.
Save Tocchann/cc2840dede3b52d0dc00a896e80f75b6 to your computer and use it in GitHub Desktop.
ミニマム実装例
int RunMessageLoop()
{
MSG msg;
while( GetMessage( &msg, nullptr, 0, 0 ) )
{
TranslateMessage( &msg );
DispatchMessage( &msg );
}
return msg.wParam;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment