2025-04-27 07:49:33 -04:00

33 lines
556 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.

#ifndef _ADM_TEST_SINK_
#define _ADM_TEST_SINK_
#include <iadm.h>
class CImpIADMCOMSINK : public IMSAdminBaseSink {
public:
CImpIADMCOMSINK();
~CImpIADMCOMSINK();
HRESULT _stdcall
QueryInterface(REFIID riid, void **ppObject);
ULONG _stdcall
AddRef();
ULONG _stdcall
Release();
HRESULT STDMETHODCALLTYPE SinkNotify(
/* [in] */ DWORD dwMDNumElements,
/* [size_is][in] */ MD_CHANGE_OBJECT __RPC_FAR pcoChangeList[ ]);
private:
ULONG m_dwRefCount;
};
#endif