i66i88
驱动牛犊
驱动牛犊
  • 注册日期2007-09-16
  • 最后登录2018-05-04
  • 粉丝0
  • 关注0
  • 积分67分
  • 威望423点
  • 贡献值1点
  • 好评度47点
  • 原创分0分
  • 专家分0分
阅读:1392回复:0

牛人们,如何在驱动级取CPU ID?

楼主#
更多 发布于:2009-01-22 17:47
如何在驱动级取CPU ID?

...
    NTSYSAPI NTSTATUS NTAPI NtQuerySystemInformation(IN ULONG SystemInformationClass,IN PVOID SystemInformation,IN ULONG SystemInformationLength,OUT PULONG ReturnLength);

    VOID GetHardwareInfo()
    {
        ULONG SystemInformationClass=0;
        PVOID SystemInformation=0;
        ULONG SystemInformationLength=0;
        PULONG ReturnLength=0;
        NTSTATUS rc;

        rc=NtQuerySystemInformation(SystemInformationClass,SystemInformation,SystemInformationLength,ReturnLength);
       // ......
       //        DbgPrint("cpu id %s",cpuid)
        //......
        return;
    }

上面的代码编译通过。

但SystemInformationClass,SystemInformation 等具体怎么写?

谢谢

谢谢
游客

返回顶部