mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
605 B
19 lines
605 B
// Copyright (c) 1999-2002 Microsoft Corporation. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#ifndef _SBESINKCP_H_
|
|
#define _SBESINKCP_H_
|
|
|
|
#include <deviceeventimpl.h>
|
|
|
|
template <class T, const IID* piid = &IID_IMSVidStreamBufferSinkEvent, class CDV = CComDynamicUnkArray>
|
|
class CProxy_StreamBufferSinkEvent : public CProxy_DeviceEvent<T, piid, CDV>
|
|
{
|
|
public:
|
|
void Fire_CertificateFailure() { Fire_VoidMethod(eventidSinkCertificateFailure); }
|
|
void Fire_CertificateSuccess() { Fire_VoidMethod(eventidSinkCertificateSuccess); }
|
|
void Fire_WriteFailure() { Fire_VoidMethod(eventidWriteFailure); }
|
|
|
|
};
|
|
#endif
|