Windows-API-examples/firststeps/simple.c
2016-02-08 12:35:53 +01:00

10 lines
236 B
C

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