NTFS_FILE_RECORD_OUTPUT_BUFFER structure (winioctl.h)

Receives output data from the FSCTL_GET_NTFS_FILE_RECORD control code.

Syntax

typedef struct {
  LARGE_INTEGER FileReferenceNumber;
  DWORD         FileRecordLength;
  BYTE          FileRecordBuffer[1];
} NTFS_FILE_RECORD_OUTPUT_BUFFER, *PNTFS_FILE_RECORD_OUTPUT_BUFFER;

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[1]

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.

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Header winioctl.h (include Windows.h)

See also

FSCTL_GET_NTFS_FILE_RECORD

NTFS_FILE_RECORD_INPUT_BUFFER