VC6.0 error LNK2001: unresolved external symbol _main
[时间]:2008-8-12
[问题]:
最简单的Win32程序示例:
#include <windows.h>
int WINAPI WinMain (HINSTANCE hInstance,
HINSTANCE hPrevInstance,
PSTR szCmdLine,
int iCmdShow)
{
MessageBox(NULL, "Hello, Win32!", "问候", MB_OK) ;
return 0 ;
}
在使用VC6.0直接编译cpp文件时(未通过AppWizard)出现错误:
error LNK2001: unresolved external symbol _main
在创建项目时, 不使用AppWizard向导, 就有可能在编译时产生很多连接错误,
如error LNK2001错误, 典型的错误提示有:
error LNK2001: unresolved external symbol _main
[解决]:
error LNK2001: unresolved external symbol _main.
这是Windows子系统设置错误.
Windows项目要使用Windows子系统, 而不是Console, 可以这样设置:
[Project] --> [Settings] --> 选择"Link"属性页,
在Project Options中将/subsystem:console改成/subsystem:windows。
文章来源:
http://wintys.blog.51cto.com/425414/92284
posted on 2009-03-18 12:02
天堂露珠 阅读(1068)
评论(0) 编辑 收藏 所属分类:
Error