在线笔记
全部博文(596)
发布时间:2014-05-29 16:30:43
驱动获取系统版本信息有2个函数,分别是PsGetVersion RtlGetVersionPsGetVersion在XP后已经不建议使用,/*Returns the windows version we're running on*/vboxWinVersion_t VBoxQueryWinVersion(){ ULONG major, minor, build; &.........【阅读全文】
发布时间:2014-05-29 15:56:51
http://technet.microsoft.com/zh-cn/library/ff558773%28v=vs.85%29.aspxThe PAGED_CODE macro ensures that the calling thread is running at an IRQL that is low enough to permit paging.SyntaxC++VOID PAGED_CODE(void);Paramet.........【阅读全文】
发布时间:2014-04-29 15:20:34
安装的WDK版本是:WDK 7600.16385.1出现错误的代码位置是:C:\WinDDK\7600.16385.1\src\1394\vdev_hybrid\exe\wdf1394.rc (124)119行的 CTEXT "Microsoft ?,IDC_STATIC,46,35,86,8少了一个",导致下面都是字符串"Microsoft ?,IDC_STATIC,46.........【阅读全文】
发布时间:2014-04-28 15:57:24
//hello_nt.h#pragma once#ifdef __cplusplusextern "C" {#endif#include <ntddk.h>#ifdef __cplusplus}#endif#define PAGEDCODE code_seg("PAGE").........【阅读全文】