0

我正在尝试将 ah 文件包含到我的项目中,但我发现了一些错误。该程序运行正常。我真的需要我包含的 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
4

1 回答 1

2

您发布的代码既没有包含警卫,也#pragma once没有包含标题或前向声明,所以我认为它不完整。因此,这在这里有点猜测,但也许会有所帮助:

  • 第一个问题似乎是编译器不知道是什么TOOLINFO- 可能缺少一些包含,或者您以某种方式弄乱了命名空间,#defines或者在包含该标头之前的其他事情。
  • 第二个问题是您直接或间接地包含Winsock.h了之前的冲突Winsock2.h,必须将其用于 MFC。

结论:可以肯定地说您在某处弄乱了代码,但错误在包含的标题中显示得更晚,并且似乎与混乱的原始原因无关。

于 2013-02-27T12:30:17.160 回答