最简单的Win32程序示例:
#include <windows.h>
int WINAPI WinMain (HINSTANCE hInstance,
HINSTANCE hPrevInstance,
PSTR szCmdLine,
int iCmdShow)
{
MessageBox(NULL, "Hello, Win32!", "问候", MB_OK) ;
return 0 ;
}
文章来源:
http://wintys.blog.51cto.com/425414/92287
posted on 2009-03-18 12:02
天堂露珠 阅读(162)
评论(0) 编辑 收藏 所属分类:
C++