有没有检测操作系统的宏...?
我计划使用 vista 之后可用的媒体基础 API 编写一段代码。我想在 #if 块中添加代码,例如...
#if <SomeMacro>
// all the classes using MediaFoundation go here.
#endif
我找不到宏来检测操作系统版本。这在 Windows 上通常是如何完成的?我发现 _WIN32 和 _WIN64 可以检测 32 位和 64 位,但没有宏来确定 api 可用性。是否有更好的方法根据 vc 中的 API 可用性来隔离代码?
谢谢, 阿比奈。
I am planning to write a piece of code using the media foundation API which is available after vista. I want to add the code inside a #if block something like...
#if <SomeMacro>
// all the classes using MediaFoundation go here.
#endif
I could not find a macro to detect the operating system version. How is this normally done on windows?? I found _WIN32 and _WIN64 to detect 32-bit and 64-bit but no macros to determine api availability. Is there a better way of isolating code based on API availability in vc..?
Thanks,
Abhinay.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,他们在这里:
http://msdn.microsoft.com/en-us /library/aa383745(VS.85).aspx
Yes, here they are:
http://msdn.microsoft.com/en-us/library/aa383745(VS.85).aspx
并不真地。您能做的最好的事情就是关闭 WIN32_WINNT 宏,但如果有人转身尝试在 XP 上运行您的应用程序,这对您没有帮助。
Not really. The best you can do is to key off the WIN32_WINNT macro, but that doesn't help you if someone turns around and tries to run your application on XP.
尝试使用
_WIN32_WINNT
和WINVER
宏。更多信息请参见:http://msdn.microsoft.com /en-us/library/aa383745%28VS.85%29.aspx尝试类似,
Try the
_WIN32_WINNT
andWINVER
macros. More info here: http://msdn.microsoft.com/en-us/library/aa383745%28VS.85%29.aspxTry something like,