diff --git a/main/winmain_ex.c b/main/winmain_ex.c new file mode 100644 index 0000000..8cf82ed --- /dev/null +++ b/main/winmain_ex.c @@ -0,0 +1,9 @@ +#include + +int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, + PWSTR szCmdLine, int CmdShow) { + + MessageBoxW(NULL, szCmdLine, L"Title", MB_OK); + + return EXIT_SUCCESS; +}