xwords/xwords4/wince/test/messagebox.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;
}