7 lines
159 B
C++
7 lines
159 B
C++
|
|
#include <windows.h>
|
||
|
|
|
||
|
|
int WINAPI wWinMain(HINSTANCE h, HINSTANCE p, LPWSTR c, int s) {
|
||
|
|
MessageBoxW(NULL, L"Hello World!", L"Test", MB_OK);
|
||
|
|
return 0;
|
||
|
|
}
|