Leaked source code of windows server 2003
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.
 
 
 
 
 
 

32 lines
500 B

/*
* refcount.hpp - RefCount class description.
*/
#pragma once
#include <objbase.h>
#include <windows.h>
/* Types
********/
/* Classes
**********/
class RefCount
{
private:
ULONG m_ulcRef;
public:
RefCount(void);
// Virtual destructor defers to destructor of derived class.
virtual ~RefCount(void);
// IUnknown methods
ULONG STDMETHODCALLTYPE AddRef(void);
ULONG STDMETHODCALLTYPE Release(void);
};
DECLARE_STANDARD_TYPES(RefCount);