// ntifs.h
typedef struct _FILE_ZERO_DATA_INFORMATION {
LARGE_INTEGER FileOffset;
LARGE_INTEGER BeyondFinalZero;
} FILE_ZERO_DATA_INFORMATION, *PFILE_ZERO_DATA_INFORMATION;
View the official Windows Driver Kit DDI reference// winioctl.h
typedef struct _FILE_ZERO_DATA_INFORMATION {
LARGE_INTEGER FileOffset;
LARGE_INTEGER BeyondFinalZero;
} FILE_ZERO_DATA_INFORMATION, *PFILE_ZERO_DATA_INFORMATION;
View the official Win32 API referenceNo description available.
Contains a range of a file to set to zeros. This structure is used by the FSCTL_SET_ZERO_DATA control code.
FileOffsetThe file offset of the start of the range to set to zeros, in bytes.
BeyondFinalZeroThe byte offset of the first byte beyond the last zeroed byte.
Contains a range of a file to set to zeros. This structure is used by the FSCTL_SET_ZERO_DATA control code
FileOffsetThe file offset of the start of the range to set to zeros, in bytes.
BeyondFinalZeroThe byte offset of the first byte beyond the last zeroed byte.