在安装了 VS08 的旧 XP 中使用最新的 dll 函数
我想使用仅 Vista 或更高版本操作系统支持的 dll 函数。因为我使用的是XP,不想升级到Vista或Win7。有没有办法可以使用 dll/api 函数在当前 XP 上安装的 VS08 中进行编码?
I'd like to use functions from dlls that only Vista or later OS versions support. Because I am using XP and don't want to upgrade to Vista or Win7. Is there a way I can use the dlls/api functions to code in VS08 installed on my current XP ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果安装 Windows SDK,您应该能够为更高版本的 Windows 生成二进制文件。但你将无法运行某些东西。
http://www.microsoft.com/download/en/details.aspx ?id=3138
If you install the Windows SDK you should be able to make binaries for later Windows versions. You wont be able to run things though.
http://www.microsoft.com/download/en/details.aspx?id=3138
在代码中,使用
LoadLibrary()
和GetProcAddress()
检查给定 DLL 函数是否存在。如果返回非 NULL 指针,则可以通过该指针调用 DLL 函数,直到调用FreeLibrary()
。如果返回 NULL 指针,则该函数不可用,您的代码可以跳过它并执行其他操作。如果函数使用您的 VS 环境中尚未定义的特定结构、枚举等,您可以安装更新的 SDK 或直接在代码中手动定义它们。
In your code, use
LoadLibrary()
andGetProcAddress()
to check for the existence of a given DLL function. If a non-NULL pointer is returned, you can call the DLL function via that pointer until you callFreeLibrary()
. If a NULL pointer is returned instead, the function is not available and your code can skip it and do something else.If the function uses particular structures, enums, etc that are not defined in your VS environment yet, you can either install a newer SDK or define them manually directly in your code.