Windows-API-examples/main/winmain_ex.c
2016-04-06 14:10:55 +02:00

10 lines
220 B
C

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