mirror of
https://github.com/janbodnar/Windows-API-examples.git
synced 2024-11-24 11:25:30 +00:00
Create simple.c
This commit is contained in:
parent
f3db0f322d
commit
45adbfc140
9
firststeps/simple.c
Normal file
9
firststeps/simple.c
Normal file
@ -0,0 +1,9 @@
|
||||
#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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user