Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

43 lines
671 B

/*
* refcount.hpp - RefCount class description.
*/
/* Types
********/
// RefCount destructor callback function
typedef void (*OBJECTDESTROYEDPROC)(void);
/* Classes
**********/
class RefCount
{
private:
ULONG m_ulcRef;
OBJECTDESTROYEDPROC m_ObjectDestroyed;
public:
RefCount(OBJECTDESTROYEDPROC ObjectDestroyed);
// Virtual destructor defers to destructor of derived class.
virtual ~RefCount(void);
// IUnknown methods
ULONG STDMETHODCALLTYPE AddRef(void);
ULONG STDMETHODCALLTYPE Release(void);
// friends
#ifdef DEBUG
friend BOOL IsValidPCRefCount(const RefCount *pcrefcnt);
#endif
};
DECLARE_STANDARD_TYPES(RefCount);