#ifndef _NTIOAPI_H
NTSYSCALLAPI
NTSTATUS
NTAPI
NtWriteFileGather(
_In_ HANDLE FileHandle,
_In_opt_ HANDLE Event,
_In_opt_ PIO_APC_ROUTINE ApcRoutine,
_In_opt_ PVOID ApcContext,
_Out_ PIO_STATUS_BLOCK IoStatusBlock,
_In_ PFILE_SEGMENT_ELEMENT SegmentArray,
_In_ ULONG Length,
_In_opt_ PLARGE_INTEGER ByteOffset,
_In_opt_ PULONG Key
);
View code on GitHub
#ifndef _NTZWAPI_H
NTSYSCALLAPI
NTSTATUS
NTAPI
ZwWriteFileGather(
_In_ HANDLE FileHandle,
_In_opt_ HANDLE Event,
_In_opt_ PIO_APC_ROUTINE ApcRoutine,
_In_opt_ PVOID ApcContext,
_Out_ PIO_STATUS_BLOCK IoStatusBlock,
_In_ PFILE_SEGMENT_ELEMENT SegmentArray,
_In_ ULONG Length,
_In_opt_ PLARGE_INTEGER ByteOffset,
_In_opt_ PULONG Key
);
View code on GitHub
Function NtWriteFileGather
writes specified block of file with data from memory pages. See NtReadFileScatter
for more information.
HANDLE
to File Object opened with FILE_WRITE_DATA
access and FILE_NO_INTERMEDIATE_BUFFERING
open option.
Warning: You cannot use File Object opened with FILE_APPEND_DATA
access.
HANDLE
to Event Object signaled when writing will finish. Function always use asynchronous writing operation, so caller should define Event
or ApcRoutine
parameter.
Pointer to user's APC Routine.
Parameter for ApcRoutine
.
IO result of call.
Array of FILE_SEGMENT_ELEMENT
elements pointing to memory pages to write. Last array element must be NULL.
Number of bytes to write.
Pointer to LARGE_INTEGER
value indicates starting position for write.
Pointer to user's defined key, used when file is locked (see NtLockFile
).