在注册表中定义了一个 Internet Explorer CLSID,它指向 IE 可执行文件。
我想将此 CLSID 与 CoCreateInstance 函数一起使用,但无法确定我应该将此代码链接到哪个库。
我已将以下代码添加到我的 CPP -
EXTERN_C const CLSID CLSID_InternetExplorerMedium;
ifdef __cplusplus
class DECLSPEC_UUID("D5E8041D-920F-45e9-B8FB-B1DEB82C6E5E")
InternetExplorerMedium;
endif
hResult = CoCreateInstance (CLSID_InternetExplorerMedium,
NULL, CLSCTX_SERVER,
IID_IWebBrowser2, (void **) &m_pMyIE);
由于我无法找出任何具有此 CLSID 的头文件,因此我已将其添加到我的 .CPP 文件中,我也无法找出类型库。