Skip to content

Instantly share code, notes, and snippets.

@AcnodeLabs
Created October 15, 2018 05:45
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 AcnodeLabs/fbe49ac7535e878fdf4db381ffe9cfb0 to your computer and use it in GitHub Desktop.
Save AcnodeLabs/fbe49ac7535e878fdf4db381ffe9cfb0 to your computer and use it in GitHub Desktop.
DoEvents Win/ MFC
void DoEvents() {
MSG msg;
if(::PeekMessage(&msg,NULL,0,0,PM_REMOVE)) {
::TranslateMessage(&msg);
::DispatchMessage(&msg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment