4

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. available type libraries

Community
  • 1
  • 1
kagali-san
  • 2,964
  • 7
  • 48
  • 87
  • 1
    C:\Program Files (x86)\Common Files\Designer\MSADDNDR.olb. That article is *seriously* outdated. I'd strongly recommend getting started in C# and if necessary use C++/CLI to interop with C++ code. – Hans Passant Sep 22 '13 at 18:57

1 Answers1

6

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")
]

enter image description here

Roman R.
  • 68,205
  • 6
  • 94
  • 158