Leaked source code of windows server 2003
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.

28 lines
479 B

  1. //
  2. // FPPriv.h
  3. //
  4. #ifndef __FP_BRIDGE__
  5. #define __FP_BRIDGE__
  6. #include <OBJBASE.h>
  7. #include <INITGUID.H>
  8. // {7CFF69E2-FF93-4f48-BD94-F73D28589613}
  9. DEFINE_GUID(IID_IFPBridge,
  10. 0x7cff69e2, 0xff93, 0x4f48, 0xbd, 0x94, 0xf7, 0x3d, 0x28, 0x58, 0x96, 0x13);
  11. //
  12. // IFPBridge
  13. //
  14. DECLARE_INTERFACE_(
  15. IFPBridge, IUnknown)
  16. {
  17. STDMETHOD (Deliver) (
  18. IN long nMediaType,
  19. IN IMediaSample* pSample
  20. ) = 0;
  21. };
  22. #endif