我们有这个代码,在我们在服务器2008上编译时起作用了:
#import <msxml6.dll> rename("DOMDocument","DOMDocumentT"), named_guids raw_interfaces_only rename_namespace("MSXML")
...
hr = pXMLDoc.CreateInstance( MSXML::CLSID_DOMDocumentT );
现在我收到了这个错误:
error C2039: 'CLSID_DOMDocumentT' : is not a member of 'MSXML'
不幸的是,我不太了解COM(这是遗留代码),知道该怎么做。
有什么想法吗?