AxibugEmuOnline/virtuanessrc097-master/Com.h

22 lines
576 B
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// COM利用サポートクラス
//
#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__