NTFS_FILE_RECORD_OUTPUT_BUFFER - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntifs.h

typedef struct {
  LARGE_INTEGER FileReferenceNumber;
  ULONG         FileRecordLength;
  UCHAR         FileRecordBuffer[1];
} NTFS_FILE_RECORD_OUTPUT_BUFFER, *PNTFS_FILE_RECORD_OUTPUT_BUFFER;
View the official Windows Driver Kit DDI reference
// winioctl.h

typedef struct {
  LARGE_INTEGER FileReferenceNumber;
  DWORD         FileRecordLength;
  BYTE          FileRecordBuffer[1];
} NTFS_FILE_RECORD_OUTPUT_BUFFER, *PNTFS_FILE_RECORD_OUTPUT_BUFFER;
View the official Win32 API reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntifs-ntfs_file_record_output_buffer)

Description

The NTFS_FILE_RECORD_OUTPUT_BUFFER structure receives the output data from the FSCTL_GET_NTFS_FILE_RECORD control code.

Members

FileReferenceNumber

The file identifier of the returned file record. This is not necessarily the file identifier specified in the FileReferenceNumber member of the NTFS_FILE_RECORD_INPUT_BUFFER structure.

FileRecordLength

Length of the file record, in bytes.

FileRecordBuffer[1]

The starting location of the buffer for the returned file record.

See also

FSCTL_GET_NTFS_FILE_RECORD

NTFS_FILE_RECORD_INPUT_BUFFER


Win32 API reference (ns-winioctl-ntfs_file_record_output_buffer)

NTFS_FILE_RECORD_OUTPUT_BUFFER structure

Description

Receives output data from the FSCTL_GET_NTFS_FILE_RECORD control code.

Members

FileReferenceNumber

The file identifier of the returned file record. This is not necessarily the file identifier specified in the FileReferenceNumber member of the NTFS_FILE_RECORD_INPUT_BUFFER structure. Refer to the Remarks section of the reference page for FSCTL_GET_NTFS_FILE_RECORD for more information.

FileRecordLength

The length of the returned file record, in bytes.

FileRecordBuffer

The starting location of the buffer for the returned file record.

Remarks

To retrieve data to fill in this structure, use the DeviceIoControl FSCTL_GET_NTFS_FILE_RECORD control code.

See also

FSCTL_GET_NTFS_FILE_RECORD

NTFS_FILE_RECORD_INPUT_BUFFER