ZekeAranyLucas’s avatarZekeAranyLucas’s Twitter Archive—№ 605

  1. …in reply to @BillB
    BillB I would say, it’s probably a refcounted object. Standard way to implement IUnknown from COM using c++ ULONG Obj::Release() { ULONG count = InterlockedDecrement(m_cRef); if (0 == count) { delete this; } return count; }