gln
gln

Reputation: 1031

Converting dll to COM - c++

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

Answers (1)

user472155
user472155

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

Related Questions