Custom COM objects without type library

Started by
2 comments, last by cnstrnd 20 years, 3 months ago
I'm building a custom COM object (a DShow filter which derives from a DShow base class) but no other program but mine needs to know about this particular type. How can create an instance of this class for use in a COM framework ? Thanks. [edited by - cnstrnd on January 18, 2004 3:51:02 PM]
Advertisement
Use GUIDgen to create a CLSID and an IID, register your COM object, and use CoCreateInstance() as normal.

On the other hand, if only your program needs to use it, why bother making it COM?
You can just ''new'' it if you are following the examples with the SDK. If you are using the ATL, then make it like any other COM object.
- The trade-off between price and quality does not exist in Japan. Rather, the idea that high quality brings on cost reduction is widely accepted.-- Tajima & Matsubara
Ok thanks, I was over complicating on this.
''new'' works.

This topic is closed to new replies.

Advertisement