mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-01 06:19:57 +01:00
10 lines
185 B
C
10 lines
185 B
C
|
#include <windows.h>
|
||
|
|
||
|
int
|
||
|
WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine,
|
||
|
int nCmdShow )
|
||
|
{
|
||
|
MessageBox(0, L"HELLO!", L"H3LLO!", 0);
|
||
|
return 0;
|
||
|
}
|