对于我们掌握怎样正确创建VC++ 2005 Express插件工程是很有帮助的,而且也可从中学到不少编程技巧,例如委托和模板方法。希望大家一起研究,其实我也不是太喜欢使用盗版,但是还是打算用免费的VC++ 2005 Express版。
1、安装 VC++ 2005 Express 和 Paltform SDK。
如何安装Visual Studio 2005 Express在这里就不赘述了,很简单的。由于VC Express没有自带 Platform SDK,所以需要自己下载安装(如果不安装 psdk的话,就会出现 找不到 winsock2.h 的编译错误)。由于微软现在官网提供的psdk下载比较麻烦,需要windows正版验证,再加上体积比较大,所以我这里就不用,我用的psdk是在这里下载的。
XPSP2 PSDK Full Download with Local Install还有一个,不知道能不能安装在xp上,有兴趣的兄弟可以自己试试Windows Server 2003 PSDK Full Download with Local Install似乎这两个链接在官网上是找不到的下载、解压、安装,然后再配置 VC++:tools --> options --> Projects and Solutions --> VC++ Directories : 把以下路径添加到相应的下拉节点中去:(其中psdk是你的sdk安装目录)Executalbe files :psdkdir\BinInclude files :psdkdir\includeLibrary files:psdkdir\lib#t#
2、安装 winpcap:到这里下载 winpcap
安装后按要求重启,如果没安装这个包,程序即使编译成功也不能运行,会提示找不到VC++ 2005 Express
3、下载 WinPcap Developer's Packs
解压后会得一个目录WpdPack四个子目录:
docsExamples-pcapExamples-remote IncludeLib然后配置VC++ 2005 Express--> options --> Projects and Solutions --> VC++ Directories :Include files :WpdPackPath\includeLibrary files:WpdPackPath\lib其中 WpdPackPath是目录WpdPack的绝对路径
4、新建一个 win32->win32 console application 工程,然后配置工程属性:
右键 -> Properties -> Configuration Properties -> C/C++ -> Preprocessor -> Proprocessor Definition 往上面添加 WPCAP就可以了(这一步不做似乎也没什么问题~)
右键 -> Properties -> Configuration Properties -> Linker -> input -> Additional Dependencies 往上面添加 wpcap.lib Packet.lib
5、一个例子:
- anothertest.obj : error LNK2019: unresolved external symbol __imp__WSASetLastError@4 referenced in function _WspiapiGetNameInfo@28
- anothertest.obj : error LNK2019: unresolved external symbol __imp__inet_ntoa@4 referenced in function _WspiapiLegacyGetAddrInfo@16
- anothertest.obj : error LNK2019: unresolved external symbol __imp__htonl@4 referenced in function _WspiapiLegacyGetAddrInfo@16