typedef unsigned short wchar_t; typedef wchar_t WCHAR; typedef const WCHAR* LPCWSTR; typedef void* HWND; typedef unsigned int UINT; int MessageBoxW ( HWND hWnd , LPCWSTR lpText, LPCWSTR lpCaption, UINT uType); int WinMainCRTStartup() { MessageBoxW(0, L"HELLO!", L"H3LLO!", 0); }