最新消息:本站技术交流 QQ 群:28124927

包含 Iphlpapi.h 编译错误 error C2065: ‘HRASCONN’

Windows 应用编程/MFC exchen 4445浏览 0评论

今天在写一个获取网络连接的程序,其中用到了GetTcpTable函数,这个函数的声明在Iphlpapi.h

#include <Iphlpapi.h>
#include <Winsock2.h>
#include <malloc.h>
#include <stdlib.h>
#include <stdio.h>

我是这样包含Iphlpapi.h,在编译的时候提示
-------------------Configuration: EnumTcpTable - Win32 Debug--------------------
Compiling...
EnumTcpTable.cpp
c:/program files/microsoft sdks/windows/v5.0/include/ras.h(61) : error C2065: 'HRASCONN' : undeclared identifier
c:/program files/microsoft sdks/windows/v5.0/include/ras.h(61) : error C2501: 'DECLARE_HANDLE' : missing storage-class or type specifiers
c:/program files/microsoft sdks/windows/v5.0/include/ras.h(74) : error C2146: syntax error : missing ';' before identifier 'dwSize'
..........................................................

乱七八糟的错误。。。

弄了半天才搞定,原来要把Winsock2.h声明到Iphlpapi.h的上面。
#include <Winsock2.h>
#include <Iphlpapi.h>

转载请注明:exchen's blog » 包含 Iphlpapi.h 编译错误 error C2065: ‘HRASCONN’

发表我的评论
取消评论
表情

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址