您的位置:首页 > 移动开发

我的第一个Win 32 Application 程序

2013-08-19 21:42 141 查看
虽然并不懂到底是什么意思

// test.cpp : Defines the entry point for the application.
//

#include "stdafx.h"

int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow)
{
  // TODO: Place code here.
    MessageBox(NULL,TEXT("世界你好!"),TEXT("问好"),MB_OK);
 return 0;
}






在VC6.0上面 文件→新建→工程→Win 32 Application 写上名字 确定 选择一个简单的Win 32 程序
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: