_IDTExtensibility2, what DLL to import into ATL project?

不问归期 提交于 2019-12-23 19:27:20

问题


So I'm trying to solve my Office add-in task again; I have created the ATL project, added simple class, and now want to add interface implementation, as http://www.devarticles.com/c/a/Cplusplus/Writing-an-MS-Word-Addin/1/ proposes;

However, available type libraries list has no listed Extensibility to add; I checked under Program Files, but the Extensibility.dll found there was a .NET assembly without exposed COM classes.


回答1:


Type library is {AC0714F2-3D04-11D1-AE7D-00A0C90F26F4}, named "Microsoft Add-In Designer" hosted by probably MSADDNDR.DLL.

// typelib filename: MSADDNDR.DLL

[
  uuid(AC0714F2-3D04-11D1-AE7D-00A0C90F26F4),
  version(1.0),
  helpstring("Microsoft Add-In Designer")
]



来源:https://stackoverflow.com/questions/18947227/idtextensibility2-what-dll-to-import-into-atl-project

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!