Windows-API-examples/main/winmain_ex.c
2016-01-31 13:51:52 +01:00

10 lines
231 B
C

#include <windows.h>
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
PWSTR szCmdLine, int CmdShow) {
MessageBoxW(NULL, szCmdLine, L"Title", MB_OK);
return EXIT_SUCCESS;
}