how to use a native C++ dll in an ATL dll

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bltfr
    New Member
    • Feb 2010
    • 2

    how to use a native C++ dll in an ATL dll

    hi,
    I have a native C++ dll and i want to call it from an atl dll.I have included the necessary header files and libraries but it doesn't work. Could you tell me the steps to do this operation?
  • weaknessforcats
    Recognized Expert Expert
    • Mar 2007
    • 9214

    #2
    You will need to derive your class from and atl base class and override the intterface you wish to support. You make your dll call in

    the override using your own code.

    Comment

    Working...