visual studio 2005 编译 无法解析的外部符号 _main 无法解析的外部命令

#include"stdafx.h"#include"windows.h"#include"powrprof.h"#pragmacomment(lib,"powrprof... #include "stdafx.h"
#include "windows.h"
#include "powrprof.h"
#pragma comment(lib,"powrprof.lib")
int WINAPI _tWinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPTSTR lpCmdLine, int nCmdShow)
{
UINT uiID=0;
GLOBAL_POWER_POLICY GlobalPowerPolicy;
GetActivePwrScheme(&uiID);
ReadGlobalPwrPolicy(&GlobalPowerPolicy);

GlobalPowerPolicy.user.PowerButtonAc.EventCode=POWER_FORCE_TRIGGER_RESET;
GlobalPowerPolicy.user.PowerButtonDc.EventCode=POWER_FORCE_TRIGGER_RESET;

WriteGlobalPwrPolicy(&GlobalPowerPolicy);

SetActivePwrScheme(uiID,&GlobalPowerPolicy,NULL);

return 1;
}

1>power.cpp
1>正在链接...
1>MSVCRTD.lib(crtexe.obj) : error LNK2019: 无法解析的外部符号 _main,该符号在函数 ___tmainCRTStartup 中被引用
1>D:\My Documents\Visual Studio 2005\Projects\power\Debug\power.exe : fatal error LNK1120: 1 个无法解析的外部命令
1>生成日志保存在“file://d:\My Documents\Visual Studio 2005\Projects\power\power\Debug\BuildLog.htm”
1>power - 2 个错误,0 个警告
展开
 我来答
250cfeoom
2011-07-11 · TA获得超过2557个赞
知道大有可为答主
回答量:4657
采纳率:71%
帮助的人:823万
展开全部
产生这个问题可能的原因
产生这个问题的真正原因是c语言运行时找不到适当的程序入口函数,一般情况下,如果是windows程序,那么WinMain是入口函数,如果是dos控制台程序,那么main是入口函数,而如果入口函数指定不当,很显然c语言运行时找不到配合函数,它就会报告错误。
可能:
1, 你用vc建了一个控制台程序,它的入口函数应该是main, 而你使用了WinMain.
2. 你用vc打开了一个.c/.cpp 文件,然后直接编译这个文件,这个文件中使用了WinMian而不是main作为入口函数。vc这时的默认设置是针对控制台程序的。
3.根本就没有WinMain或Main函数。
三, 解决方法
1.进入project->setting->c/c++, 在category中选择preprocessor,在processor definitions中删除_CONSOLE, 添加_WINDOWS
2.进入project->setting->Link, 在Project options中将 /subsystem:console改为/subsystem:windows.
3.保存设置,Rebuild All.
VS2005中的设置请参考对应项进行设置
四,VS2005中的设置
1.菜单中选择 Project->Properties, 弹出Property Pages窗口
2.在左边栏中依次选择:Configuration Properties->C/C++->Preprocessor,然后在右边栏的Preprocessor Definitions对应的项中删除_CONSOLE, 添加_WINDOWS.
3.在左边栏中依次选择:Configuration Properties->Linker->System,然后在右边栏的SubSystem对应的项改为Windows(/SUBSYSTEM:WINDOWS)
4.Rebuild All.
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式