Hello Windows

//Hello Windows

#include <windows.h>


int /*WINAPI*/__stdcall WinMain(HINSTANCE hInstance,HINSTANCE hPreInstance,LPSTR lpCmdLine,int nShowCmd)
{
    MessageBox(NULL,TEXT("Hello Windows"),TEXT("Hello Windows"),0);
    return 0;
}

 

 

First Windows Application -> Hello Windows.

你可能感兴趣的:(Hello Windows)