コード例 #1
0
CEnumMediaTypes::~CEnumMediaTypes()
{
#ifdef DEBUG
    DbgRegisterObjectDestruction(m_dwCookie);
#endif
    m_pPin->Release();
}
コード例 #2
0
ファイル: EnumPins.cpp プロジェクト: EnoroF/easygamelibs
CEnumPins::~CEnumPins()
{
	m_pFilter->Release();

#ifdef DEBUG
	DbgRegisterObjectDestruction(m_dwCookie);
#endif
}
コード例 #3
0
ファイル: combase.cpp プロジェクト: BackupTheBerlios/aigine
CBaseObject::~CBaseObject()
{
    /* Decrement the number of objects active */
    if (InterlockedDecrement(&m_cObjects) == 0) {
	if (hlibOLEAut32) {
	    FreeLibrary(hlibOLEAut32);

	    hlibOLEAut32 = 0;
	}
    };


#ifdef DEBUG
    DbgRegisterObjectDestruction(m_dwCookie);
#endif
}