I have an ATL class. I'd like to know when QueryInterface of this class is called in order to remove memory leaks.
I added COM_INTERFACE_ENTRY_BREAK's in the COM_MAP, now it looks like:
BEGIN_COM_MAP( CMyClass )
COM_INTERFACE_ENTRY( IFace1 )
COM_INTERFACE_ENTRY( IFace2 )
//COM_INTERFACE_ENTRY_BREAK(IUnknown) // i included this too
COM_INTERFACE_ENTRY_BREAK( IFace1 )
COM_INTERFACE_ENTRY_BREAK( IFace2 )
END_COM_MAP()
When i start to debug (pressing F5) i have no breakpoint after the QI operation. I'm sure that QI is called because _ATL_DEBUG_INTERFACES shows a leak in the output window
ATL: QIThunk - 4 LEAK : Object = 0x02150CC0 Refcount = 1 MaxRefCount = 2 CMyClass - IUnknown
What should I do in order to have a breakpoint stopped at QI calling?
Thank you.
COM_INTERFACE_ENTRY_BREAK(IUnknown)only breaks if queried forIID_IUnknownspecifically. It doesn't mean "break when queried viaIUnknown::QueryInterface" – MSalters Mar 6 '12 at 11:45IFace1of my class is queried? – fogbit Mar 6 '12 at 12:02IFace1::QueryInterface(any_IID)orIAny::QueryInterface(IID_IFace1)? – MSalters Mar 6 '12 at 12:28p.CoCreateInstance(__uuidof(CMyClass)) IFace1Ptr p2 = p; // p->QueryInterface(IFace1, &p2) <--- I want to break in this moment– fogbit Mar 6 '12 at 12:45IFace1Ptr->QueryInterfaceis going to callIFace::QueryInterface. This is certainly allowed, but only performs anAddRef. – MSalters Mar 6 '12 at 12:58