Create winmain_ex.c

This commit is contained in:
janbodnar 2016-01-31 13:51:52 +01:00
parent 25ab401d45
commit d07744be62

9
main/winmain_ex.c Normal file
View File

@ -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;
}