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.

19 lines
605 B

  1. // Copyright (c) 1999-2002 Microsoft Corporation. All Rights Reserved.
  2. #pragma once
  3. #ifndef _SBESINKCP_H_
  4. #define _SBESINKCP_H_
  5. #include <deviceeventimpl.h>
  6. template <class T, const IID* piid = &IID_IMSVidStreamBufferSinkEvent, class CDV = CComDynamicUnkArray>
  7. class CProxy_StreamBufferSinkEvent : public CProxy_DeviceEvent<T, piid, CDV>
  8. {
  9. public:
  10. void Fire_CertificateFailure() { Fire_VoidMethod(eventidSinkCertificateFailure); }
  11. void Fire_CertificateSuccess() { Fire_VoidMethod(eventidSinkCertificateSuccess); }
  12. void Fire_WriteFailure() { Fire_VoidMethod(eventidWriteFailure); }
  13. };
  14. #endif