我试图将h文件包含到我的项目中,但我发现了一些错误。该计划正常运作。我真的需要我包含的H文件, 我甚至试图改变一些东西但仍然存在,同样的问题出现在我的项目中。
问题的来源以粗体字写出。
代码在上面。
class AFX_MODULE_THREAD_STATE : public CNoTrackObject { public:
AFX_MODULE_THREAD_STATE();
virtual ~AFX_MODULE_THREAD_STATE();
// current CWinThread pointer
CWinThread* m_pCurrentWinThread;
// list of CFrameWnd objects for thread
CTypedSimpleList<CFrameWnd*> m_frameList;
// temporary/permanent map state
DWORD m_nTempMapLock; // if not 0, temp maps locked
CHandleMap* m_pmapHWND;
CHandleMap* m_pmapHMENU;
CHandleMap* m_pmapHDC;
CHandleMap* m_pmapHGDIOBJ;
CHandleMap* m_pmapHIMAGELIST;
// thread-local MFC new handler (separate from C-runtime)
_PNH m_pfnNewHandler;
#ifndef _AFX_NO_SOCKET_SUPPORT
// WinSock specific thread state
HWND m_hSocketWindow;
#ifdef _AFXDLL
CEmbeddedButActsLikePtr<CMapPtrToPtr> m_pmapSocketHandle;
CEmbeddedButActsLikePtr<CMapPtrToPtr> m_pmapDeadSockets;
CEmbeddedButActsLikePtr<CPtrList> m_plistSocketNotifications;
#else
CMapPtrToPtr* m_pmapSocketHandle;
CMapPtrToPtr* m_pmapDeadSockets;
CPtrList* m_plistSocketNotifications;
#endif
#endif
// common controls thread state
CToolTipCtrl* m_pToolTip;
CWnd* m_pLastHit; // last window to own tooltip
INT_PTR m_nLastHit; // last hittest code
TOOLINFO * m_pLastInfo; //最后一个TOOLINFO结构
INT_PTR m_nLastStatus; // last flyby status message
CControlBar* m_pLastStatus; // last flyby status control bar
};
#if (_WIN32_WINNT >= 0x600)
#ifndef _WINSOCK2API_
#ifdef _WINSOCKAPI_
#error MFC需要使用Winsock2.h
#endif
#include <winsock2.h>
#endif
...
至于错误如下:
- 1>C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\atlmfc\include\afxstat_.h(172): error C2143: syntax error : missing ';' before '*'
- 1>C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\atlmfc\include\afxstat_.h(172): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
- 1>C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\atlmfc\include\afxstat_.h(172): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
- 1>C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\atlmfc\include\afxwin.h(112): fatal error C1189: #error : MFC requires use of Winsock2.h
答案 0 :(得分:2)
您发布的代码既没有包含警卫也没有#pragma once
,也没有包含标题或前向声明,所以我认为它不完整。因此,这里有点猜测,但也许有帮助:
TOOLINFO
是什么 - 可能有一些包含缺失或者你以某种方式搞砸了名称空间,#defines
或者包含该标题的其他内容。 Winsock.h
,之前与Winsock2.h
冲突必须用于MFC。 结论:可以很自然地说你把代码搞砸了,但错误在包含的标题中显示得更晚,而且似乎与混乱的原因无关。