我试图在PlatformSDK6.1中使用CLSID_InternetExplorerMedium。
虽然在SDK6.1中没有定义此CLSID,但我从SDK7.1中获得了ExDisp.h。
编译是成功的,但是链接失败了“未定义的符号”
我应该从SDK7.1借用哪个LIB文件/其他文件(TLB)来完成这项工作?
发布于 2013-11-04 13:22:05
从那里下载Windows Internet Explorer 9的标头和库并与uuid.lib链接。或者,只需使用__uuidof(InternetExplorerMedium)而不是CLSID_InternetExplorerMedium,您就不需要额外的库了。
https://stackoverflow.com/questions/19768440
复制相似问题