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.

39 lines
692 B

  1. /*++
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. bulkw.h
  5. Abstract:
  6. This module contains the bulk write associated exchange definitions.
  7. Author:
  8. Balan Sethu Raman [SethuR] 7-March-1995
  9. Revision History:
  10. --*/
  11. #ifndef _BULKW_H_
  12. #define _BULKW_H_
  13. typedef struct _SMB_WRITE_BULK_DATA_EXCHANGE_ {
  14. SMB_EXCHANGE;
  15. ULONG WriteBulkDataRequestLength;
  16. PMDL pHeaderMdl;
  17. PMDL pDataMdl;
  18. PSMB_HEADER pHeader;
  19. PREQ_WRITE_BULK_DATA pWriteBulkDataRequest;
  20. ULONG Buffer[];
  21. } SMB_WRITE_BULK_DATA_EXCHANGE,
  22. *PSMB_WRITE_BULK_DATA_EXCHANGE;
  23. #endif
  24.