mirror of
https://github.com/janbodnar/Windows-API-examples.git
synced 2024-11-14 15:55:30 +00:00
10 lines
236 B
C
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;
|
|
}
|