Code: Select all
#include <windows.h>
#pragma argsused
int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow )
{
MessageBox( 0, "Hello world", "Information", MB_ICONINFORMATION );
return 0;
}
bcc32 -tW hello