windows-nt/Source/XPSP1/NT/com/oleutest/perf16/idata/client/stgmedif.cpp
2020-09-26 16:20:57 +08:00

61 lines
981 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.

#include "datausr.h"
HRESULT
GetStgMedpUnkForRelease(IUnknown **pp_unk)
{
CStgMedIf *p_smi = new CStgMedIf();
HRESULT hr = p_smi->QueryInterface(IID_IUnknown, (PPVOID)pp_unk);
return hr;
}
CStgMedIf::CStgMedIf()
{
m_cRef = 0;
}
STDMETHODIMP
CStgMedIf::QueryInterface(
REFIID riid,
LPLPVOID ppv
)
{
*ppv = NULL;
if (IsEqualIID(riid, IID_IUnknown))
{
*ppv = (LPVOID)this;
((LPUNKNOWN)*ppv)->AddRef();
return NOERROR;
}
return ResultFromScode(E_NOINTERFACE);
}
STDMETHODIMP_(ULONG)
CStgMedIf::AddRef(void)
{
return ++m_cRef;
}
STDMETHODIMP_(ULONG)
CStgMedIf::Release(void)
{
ULONG cRefT;
cRefT = --m_cRef;
if (0==cRefT)
{
TCHAR chBuf[80];
wsprintf(chBuf, TEXT("Reference Count is %d"), cRefT);
MessageBox(0,
chBuf,
TEXT("STGMED pUnkForRelease"),
MB_OK);
delete this;
}
return cRefT;
}