110 lines
2.3 KiB
C++
110 lines
2.3 KiB
C++
////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
// Copyright (c) 1998-1999 Microsoft Corporation
|
|
//
|
|
//
|
|
// TAPIEventNotification.h : Declaration of the CTAPIEventNotification object
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////
|
|
#ifndef __TAPIEventNotification_H__
|
|
#define __TAPIEventNotification_H__
|
|
|
|
|
|
#define WM_PRIVATETAPIEVENT WM_USER+101
|
|
|
|
HRESULT
|
|
OnTapiEvent(
|
|
TAPI_EVENT TapiEvent,
|
|
IDispatch * pEvent
|
|
);
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CTAPIEventNotification
|
|
class CTAPIEventNotification : public ITTAPIEventNotification
|
|
{
|
|
private:
|
|
|
|
LONG m_dwRefCount;
|
|
|
|
public:
|
|
|
|
// CTAPIEventNotification implements ITTAPIEventNotification
|
|
// Declare ITTAPIEventNotification methods here
|
|
HRESULT STDMETHODCALLTYPE Event(
|
|
TAPI_EVENT TapiEvent,
|
|
IDispatch * pEvent
|
|
);
|
|
|
|
// other COM stuff:
|
|
public:
|
|
|
|
// constructor
|
|
CTAPIEventNotification() { m_dwRefCount = 1;}
|
|
|
|
// destructor
|
|
~CTAPIEventNotification(){}
|
|
|
|
// initialization function
|
|
// this stuff could also be done in the
|
|
// constructor
|
|
HRESULT Initialize( )
|
|
{
|
|
m_dwRefCount = 1;
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
void Shutdown()
|
|
{
|
|
}
|
|
|
|
// IUnknown implementation
|
|
HRESULT STDMETHODCALLTYPE QueryInterface(REFIID iid, void **ppvObject)
|
|
{
|
|
if (iid == IID_ITTAPIEventNotification)
|
|
{
|
|
AddRef();
|
|
*ppvObject = (void *)this;
|
|
return S_OK;
|
|
}
|
|
|
|
if (iid == IID_IUnknown)
|
|
{
|
|
AddRef();
|
|
*ppvObject = (void *)this;
|
|
return S_OK;
|
|
}
|
|
|
|
return E_NOINTERFACE;
|
|
}
|
|
|
|
//
|
|
// reference counting needs to be thread safe
|
|
//
|
|
|
|
ULONG STDMETHODCALLTYPE AddRef()
|
|
{
|
|
ULONG l = InterlockedIncrement(&m_dwRefCount);
|
|
return l;
|
|
}
|
|
|
|
ULONG STDMETHODCALLTYPE Release()
|
|
{
|
|
ULONG l = InterlockedDecrement(&m_dwRefCount);
|
|
|
|
if ( 0 == l)
|
|
{
|
|
delete this;
|
|
}
|
|
|
|
return l;
|
|
}
|
|
|
|
|
|
};
|
|
|
|
#endif //__TAPIEventNotification_H__
|
|
|
|
|