Source code of Windows XP (NT5)
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.
|
|
// 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
|