Windows 2000 上的 ILClone
有谁知道 Windows 2000 上的 ILClone() 函数有什么问题吗?是否完全支持? MSDN 说它可以在 Windows 2000 上运行,但我有一个用户报告说,由于该功能,我的程序无法在 Windows 2000 上运行。
编辑:我能够得到一个Win2K系统,我可以确认这个问题。
安装的 Shell32.dll 版本是 5.0.3700.6705。运行程序时显示的错误信息为:The procedure Entry Point ILClone Could not located in the Dynamic Link Library SHELL32.DLL
Does anyone know of any issues with the ILClone() function on Windows 2000? Is it fully supported? MSDN says it runs on Windows 2000 but I have a user reporting that my program will not run on Windows 2000 because of that function.
EDIT: I was able to get a hold of a Win2K system and I can confirm the issue.
Shell32.dll version installed is 5.0.3700.6705. The error message shown when running the program is: The procedure entry point ILClone could not be located in the dynamic link library SHELL32.DLL
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
iirc ILClone 在 Windows 5 上可用,但它是从 shlwapi.dll 导出的,因此您必须使用 LoadLibrary & 加载它。 GetProcAddress() 兼容。
iirc ILClone was available on Windows 5, but it was exported from shlwapi.dll, so you had to load it using LoadLibrary & GetProcAddress() to be compatible.