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.

32 lines
926 B

  1. #pragma once
  2. //==========================================================================;
  3. //
  4. // MiniDriver entry points for stream class driver
  5. //
  6. // $Date: 05 Aug 1998 11:22:42 $
  7. // $Revision: 1.0 $
  8. // $Author: Tashjian $
  9. //
  10. // $Copyright: (c) 1997 - 1998 ATI Technologies Inc. All Rights Reserved. $
  11. //
  12. //==========================================================================;
  13. extern "C"
  14. {
  15. #include "strmini.h"
  16. #include "ksmedia.h"
  17. }
  18. #include "wdmvdec.h"
  19. // Call-backs from the StreamClass
  20. void STREAMAPI ReceivePacket (PHW_STREAM_REQUEST_BLOCK pSrb);
  21. void STREAMAPI CancelPacket (PHW_STREAM_REQUEST_BLOCK pSrb);
  22. void STREAMAPI TimeoutPacket (PHW_STREAM_REQUEST_BLOCK pSrb);
  23. // Local prototypes
  24. void SrbInitializeDevice(PHW_STREAM_REQUEST_BLOCK pSrb);
  25. CVideoDecoderDevice * InitializeDevice(PPORT_CONFIGURATION_INFORMATION, PBYTE);
  26. size_t DeivceExtensionSize();