Reputation: 1031
I have a c++ dll which I want to convert to COM object. what are the steps I need to do?
thanks!
Upvotes: 0
Views: 2117
Reputation:
Create new ATL project. Add new interface and add the same methods to that interface which are currently exported by your DLL.
Upvotes: 2