mirror of
https://github.com/janbodnar/Windows-API-examples.git
synced 2024-11-14 15:55:30 +00:00
10 lines
231 B
C
10 lines
231 B
C
#include <windows.h>
|
|
|
|
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
|
|
PWSTR szCmdLine, int CmdShow) {
|
|
|
|
MessageBoxW(NULL, szCmdLine, L"Title", MB_OK);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|