No description available.
The FSCTL_OFFLOAD_WRITE_INPUT structure contains the input for the FSCTL_OFFLOAD_WRITE control code request.
SizeThe size of this structure. Set this member to sizeof(FSCTL_OFFLOAD_WRITE_INPUT).
FlagsThis member is not used. Set to 0.
FileOffsetThe position in the file to begin writing to. The offset value must be aligned to a logical sector boundary on the volume.
CopyLengthThe length, in bytes, of data to write, starting at FileOffset. The length value must align to a logical sector boundary on the volume, except when the length matches end-of-file.
TransferOffsetThe position in the data associated with Token to begin writing from.
TokenA byte array that contains a STORAGE_OFFLOAD_TOKEN token structure that represents a file data range to be logically written. The contents of Token must remain unmodified between offload operations.
CopyLength can be zero. The value of FileOffset + CopyLength is bounded by both MAXULONGLONG and MAXFILESIZE. FSCTL_OFFLOAD_WRITE returns with STATUS_INVALID_PARAMETER if these conditions are not met.