【windows程序设计】系列01

#include <windows.h>

int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
                    PSTR szCmdLine, int iCmdShow)
{
     MessageBox (NULL, TEXT ("Hello, World!"), TEXT ("HelloMsg"), 0) ;//0为OK

     return 0 ;
}
原文地址:https://www.cnblogs.com/elesos/p/2792016.html