Create simple.c

This commit is contained in:
Jan Bodnar 2016-02-08 12:35:53 +01:00
parent f3db0f322d
commit 45adbfc140

9
firststeps/simple.c Normal file
View 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;
}