added amb670 (exposed IDBThreadOperation to extensions)

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401163
This commit is contained in:
David Anderson
2007-07-24 02:24:37 +00:00
parent 8fa974961c
commit c3cd2ac4a3
6 changed files with 81 additions and 25 deletions
+11
View File
@@ -689,6 +689,17 @@ bool CExtensionManager::UnloadExtension(IExtension *_pExt)
}
}
IdentityToken_t *pIdentity;
if ((pIdentity = pExt->GetIdentity()) != NULL)
{
SMGlobalClass *glob = SMGlobalClass::head;
while (glob)
{
glob->OnSourceModIdentityDropped(pIdentity);
glob = glob->m_pGlobalClassNext;
}
}
delete pExt;
List<CExtension *>::iterator iter;