首页 > 其他分享 >HelloMsg

HelloMsg

时间:2023-02-19 22:34:02浏览次数:30  
标签:-------------------------------------------------------------- TEXT int Windows 

/*--------------------------------------------------------------
   HelloMsg.c -- Displays "Hello, Windows 98!" in a message box
                 (c) Charles Petzold, 1998
  --------------------------------------------------------------*/

#include <windows.h>

int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
                    PSTR szCmdLine, int iCmdShow)
{
     MessageBox (NULL, TEXT ("Hello, Windows 98!"), TEXT ("HelloMsg"), 0) ;

     return 0 ;
}

 

标签:--------------------------------------------------------------,TEXT,int,Windows,
From: https://www.cnblogs.com/ceovs/p/17135818.html

相关文章