22 lines
275 B
C
22 lines
275 B
C
|
//
|
|||
|
// COM<4F><4D><EFBFBD>p<EFBFBD>T<EFBFBD>|<7C>[<5B>g<EFBFBD>N<EFBFBD><4E><EFBFBD>X
|
|||
|
//
|
|||
|
#ifndef __CCOM_INCLUDED__
|
|||
|
#define __CCOM_INCLUDED__
|
|||
|
|
|||
|
#define WIN32_LEAN_AND_MEAN
|
|||
|
#include <windows.h>
|
|||
|
|
|||
|
class COM
|
|||
|
{
|
|||
|
public:
|
|||
|
static LRESULT AddRef();
|
|||
|
static void Release();
|
|||
|
|
|||
|
protected:
|
|||
|
static INT m_nRefCount;
|
|||
|
};
|
|||
|
|
|||
|
#endif // !__CCOM_INCLUDED__
|
|||
|
|