Windows 驱动程序中的 Windows 版本宏
_WIN64
可用于查找平台是 32 位还是 64 位。
驱动程序(内核模式代码)中是否有可用的宏可用于告知操作系统的版本。 XP、2003、Vista 还是 7?
_WIN64
can be used to find the platform to be 32-bit or 64-bit.
Are there any macros available in drivers (kernel mode code) that can be used to tell the version of the operating system. XP, 2003, Vista or 7?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要的信息位于此处。在您的构建环境中查看
SdkDdkVer.h
。特别有用:NTDDI_VERSION。The info you need is here. Check out
SdkDdkVer.h
in your build environment. Especially useful: NTDDI_VERSION.