Skip to content

Instantly share code, notes, and snippets.

@mikerr
Created July 18, 2018 09:52
Show Gist options
  • Save mikerr/69a325a6aaeead790b290208bcee548e to your computer and use it in GitHub Desktop.
Save mikerr/69a325a6aaeead790b290208bcee548e to your computer and use it in GitHub Desktop.
Simplest windows win32 GUI program ?
#include <windows.h>
int WINAPI winmain(HINSTANCE hinstance,
HINSTANCE hPrevInstance,
LPSTR lpszargument,
int nWindowStyle)
{
MessageBox(HWND DESKTOP,
"Hello World",
"This is a simple Windows Program",
MB-OK);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment