Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 86 of file cache.c.
{ struct cache *cache = impl_from_IAssemblyCache(iface); ULONG refs = InterlockedDecrement( &cache->refs ); if (!refs) { TRACE("destroying %p\n", cache); CloseHandle( cache->lock ); HeapFree( GetProcessHeap(), 0, cache ); } return refs; }