
驱动
文章平均质量分 55
云海剑痴
这个作者很懒,什么都没留下…
展开
-
Windows驱动学习笔记之二:VS2013集成IDE驱动调试
一、安装环境主机:Windows 7 SP1 x64虚拟机:VMware 10VMOS: Windows7 SP1 x64WDK: Windows Driver Kit 8.1VS:VS2013二、虚拟机配置(详细设置请参考WinDbg+WMware+OS_Win7 配置)三、VS配置 首先配制计算机 此处点击添加新计算机 选第原创 2014-01-27 10:34:59 · 9275 阅读 · 5 评论 -
驱动中.c引用.cpp文件的注意
初期学习驱动编程的小白们最基础的问题,链接错误: 因为C和C++编译原因,在新添加的.h .cpp文件如果需要被引入到.c文件中需在.h文件中添加 #ifdef __cplusplusextern "C" {#endif /*具体处理的代码*/ #ifdef __cplusplus}#endif 被extern "C"修饰的变量和函数是按原创 2014-01-29 10:35:36 · 1131 阅读 · 0 评论 -
Windows符号包下载地址
Windows符号包下载地址:Windows RT 8.1 ARM、Windows 8.1 和 Windows Server 2012 R2Windows 8.1 Preview 和 Windows Server 2012 R2 PreviewWindows 8 和 Windows Server 2012Windows 8原创 2014-02-07 17:47:38 · 4288 阅读 · 0 评论 -
Windows驱动学习笔记之一:WinDbg+WMware+OS_Win7 配置
一、安装环境主机:Windows 7 SP1 x64虚拟机:VMware 9VMOS: Windows7 SP1 x64Windbg: Windows Driver Kit 8.1 自带二、虚拟机配置打开VMware 虚拟机上的 “Virtaul Machine Settings“为了省事,这里将Printer 删除,为了让新配置的Serial Port 为1(如果不删除P原创 2014-01-07 17:44:23 · 3826 阅读 · 2 评论 -
Windows驱动学习笔记之三 驱动枚举进程(WIN64)
WIN64 驱动下枚举原创 2014-05-08 13:48:30 · 2277 阅读 · 0 评论