Create winmain_ex.c

add-license-1
janbodnar 8 years ago
parent 25ab401d45
commit d07744be62
  1. 9
      main/winmain_ex.c

@ -0,0 +1,9 @@
#include <windows.h>
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
PWSTR szCmdLine, int CmdShow) {
MessageBoxW(NULL, szCmdLine, L"Title", MB_OK);
return EXIT_SUCCESS;
}
Loading…
Cancel
Save