一家之计在于和,一生之计在于勤。
分类: C/C++
2009-04-12 22:32:44
今天做WinPcap的实验,调试出很多问题,在此做些总结:
1.Build 基于WinPcap的应用程序,出现链接错误:
indalldevs.obj : error LNK2001: unresolved external symbol _pcap_freealldevs
findalldevs.obj : error LNK2001: unresolved external symbol _pcap_findalldevs
LIBCD.lib(wincrt0.obj) : error LNK2001: unresolved external symbol _WinMain@16
Debug/findalldevs.exe : fatal error LNK1120: 3 unresolved externals
执行 link.exe 时出错.
方法1:#pragma comment(lib,"wpcap.lib")
方法2:菜单Project->Settings->Link->Objects/library modules,按End键,输入" wpcap.lib",注意wpcap.lib 前面有空格
2、error C2065: 'exit' : undeclared identifier
解决方法:
加上#include "stdlib.h"头文件,即可解决了exit问题