windows-nt/Source/XPSP1/NT/base/fs/rdr2/rdbss/smb.mrx/bulkw.h
2020-09-26 16:20:57 +08:00

40 lines
692 B
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (c) 1989 Microsoft Corporation
Module Name:
bulkw.h
Abstract:
This module contains the bulk write associated exchange definitions.
Author:
Balan Sethu Raman [SethuR] 7-March-1995
Revision History:
--*/
#ifndef _BULKW_H_
#define _BULKW_H_
typedef struct _SMB_WRITE_BULK_DATA_EXCHANGE_ {
SMB_EXCHANGE;
ULONG WriteBulkDataRequestLength;
PMDL pHeaderMdl;
PMDL pDataMdl;
PSMB_HEADER pHeader;
PREQ_WRITE_BULK_DATA pWriteBulkDataRequest;
ULONG Buffer[];
} SMB_WRITE_BULK_DATA_EXCHANGE,
*PSMB_WRITE_BULK_DATA_EXCHANGE;
#endif