what's the best/easiest way to write a COM DLL in C++?
it all looks hideous from the code I've seen..do I have to implement IUnknown myself?
Printable View
what's the best/easiest way to write a COM DLL in C++?
it all looks hideous from the code I've seen..do I have to implement IUnknown myself?
People usually use ATL for making COM DLLs, because, as you say, it's hideous :D
Unlike MFC, it adds very little to the size of your file and if you choose the MinDependency build option (like Release/Debug -- set up for you by the wizard) it needs no extra files.
I saw something on PlanetSourceCode...PigServer or something like that.