mirror of
https://github.com/ldematte/HostedPumpkin
synced 2026-06-08 15:25:15 +00:00
29 lines
618 B
C++
29 lines
618 B
C++
|
|
#ifndef SH_AUTO_EVENT_H_INCLUDED
|
|
#define SH_AUTO_EVENT_H_INCLUDED
|
|
|
|
#include "../Common.h"
|
|
|
|
class SHAutoEvent : public IHostAutoEvent
|
|
{
|
|
private:
|
|
volatile LONG m_cRef;
|
|
HANDLE m_hEvent;
|
|
SIZE_T m_cookie;
|
|
|
|
public:
|
|
SHAutoEvent(SIZE_T cookie, BOOL bInitialState = FALSE);
|
|
virtual ~SHAutoEvent();
|
|
|
|
// IUnknown functions
|
|
STDMETHODIMP_(DWORD) AddRef();
|
|
STDMETHODIMP_(DWORD) Release();
|
|
STDMETHODIMP QueryInterface(const IID &riid, void **ppvObject);
|
|
|
|
// IHostAutoEvent functions
|
|
STDMETHODIMP Wait(DWORD dwMilliseconds, DWORD option);
|
|
STDMETHODIMP Set();
|
|
};
|
|
|
|
#endif //SH_AUTO_EVENT_H_INCLUDED
|