How to expose Decorated Names of a DLL to COM?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • craig1231
    New Member
    • Mar 2009
    • 6

    How to expose Decorated Names of a DLL to COM?

    I can sucessfully expose functions of a DLL to COM, but in a specific application, it is expecting a decorated name
    Code:
    ?EuroScopePlugInInit@@YAXPAPAVCPlugIn@EuroScopePlugIn@@@Z
    How I can expose a decorated name? I currently have...
    Code:
    void EuroScopePlugInInit(out IntPtr Plugin);
Working...