mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
9 lines
185 B
C
9 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;
|
|
}
|