这样的C++连接错误怎么解决?

banksguoliang 2008-12-25 08:46:44
如题,这个程序是实现定时关机的

// AutoShut.cpp : Defines the class behaviors for the application.
//

#include "stdafx.h"
#include "AutoShut.h"
#include "AutoShutDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CAutoShutApp

BEGIN_MESSAGE_MAP(CAutoShutApp, CWinApp)
//{{AFX_MSG_MAP(CAutoShutApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CAutoShutApp construction

CAutoShutApp::CAutoShutApp()
{
// TODO: add construction code here,
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CAutoShutApp object

CAutoShutApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CAutoShutApp initialization

BOOL CAutoShutApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable, you should remove from the following
// the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CAutoShutDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}

// Since the dialog has been closed, return FALSE so that we exit the
// application, rather than start the application's message pump.
return FALSE;
}


构建时显示这样的错误
--------------------Configuration: TimePowerOff - Win32 Debug--------------------
Linking...
TimePowerOff.obj : error LNK2001: unresolved external symbol "public: __thiscall CTimePowerOffDlg::CTimePowerOffDlg(class CWnd *)" (??0CTimePowerOffDlg@@QAE@PAVCWnd@@@Z)
AutoShut.obj : error LNK2001: unresolved external symbol "public: __thiscall CAutoShutDlg::CAutoShutDlg(class CWnd *)" (??0CAutoShutDlg@@QAE@PAVCWnd@@@Z)
nafxcwd.lib(thrdcore.obj) : error LNK2001: unresolved external symbol __endthreadex
nafxcwd.lib(thrdcore.obj) : error LNK2001: unresolved external symbol __beginthreadex
libcd.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/TimePowerOff.exe : fatal error LNK1120: 5 unresolved externals
执行 link.exe 时出错.

TimePowerOff.exe - 1 error(s), 0 warning(s)

我刚才搜了一下,说是可能是头文件不完整或者缺少库,可是怎么改呢?哪位大虾帮着改一下?

...全文
98 3 打赏 收藏 转发到动态 举报
写回复
用AI写文章
3 条回复
切换为时间正序
请发表友善的回复…
发表回复
机智的呆呆 2008-12-25
  • 打赏
  • 举报
回复
百度 symbol endthreadex ~~~~~~~这错误比较常见,一搜一大把
fendou1314 2008-12-25
  • 打赏
  • 举报
回复
应该是哪个变量没有初始化吧
才出现这样的错误
DLevel 2008-12-25
  • 打赏
  • 举报
回复
#ifdef _AFXDLL 
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

这的错误吧

65,210

社区成员

发帖
与我相关
我的任务
社区描述
C++ 语言相关问题讨论,技术干货分享,前沿动态等
c++ 技术论坛(原bbs)
社区管理员
  • C++ 语言社区
  • encoderlee
  • paschen
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
  1. 请不要发布与C++技术无关的贴子
  2. 请不要发布与技术无关的招聘、广告的帖子
  3. 请尽可能的描述清楚你的问题,如果涉及到代码请尽可能的格式化一下

试试用AI创作助手写篇文章吧