AxibugEmuOnline/References/VirtuaNESex_src_191105/Com.h
2024-08-05 17:58:53 +08:00

22 lines
275 B
C++

//
// 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__