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.

24 lines
1.5 KiB

  1. //******************************************************************************/
  2. //* *
  3. //* streaming.h - *
  4. //* *
  5. //* Copyright (c) C-Cube Microsystems 1996 *
  6. //* All Rights Reserved. *
  7. //* *
  8. //* Use of C-Cube Microsystems code is governed by terms and conditions *
  9. //* stated in the accompanying licensing statement. *
  10. //* *
  11. //******************************************************************************/
  12. UINT AdapterPrepareDataForSending( PHW_DEVICE_EXTENSION pHwDevExt,
  13. PHW_STREAM_REQUEST_BLOCK pCurrentStreamSrb,
  14. DWORD dwCurrentStreamSample,
  15. PHW_STREAM_REQUEST_BLOCK* ppSrb, DWORD* pdwSample,
  16. DWORD* dwCurrentSample,DWORD dwCurrentPage,
  17. LONG* pdwDataUsed);
  18. BOOL IsThereDataToSend(PHW_STREAM_REQUEST_BLOCK pSrb,DWORD dwPageToSend,DWORD dwCurrentSample);
  19. void XferData(PHW_STREAM_REQUEST_BLOCK pSrb,PHW_DEVICE_EXTENSION pHwDevExt,DWORD dwPageToSend,
  20. DWORD dwCurrentSample);
  21. void FinishCurrentPacketAndSendNextOne( PHW_DEVICE_EXTENSION pHwDevExt );