READ_FILE_USN_DATA - NtDoc

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

typedef struct {
  USHORT MinMajorVersion;
  USHORT MaxMajorVersion;
} READ_FILE_USN_DATA, *PREAD_FILE_USN_DATA;
View the official Windows Driver Kit DDI reference
// winioctl.h

typedef struct {
  WORD MinMajorVersion;
  WORD MaxMajorVersion;
} READ_FILE_USN_DATA, *PREAD_FILE_USN_DATA;
View the official Win32 API reference

NtDoc

No description available.

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

Description

The READ_FILE_USN_DATA structure specifies the versions of the update sequence number (USN) change journal supported by the caller. This structure is the input structure to the FSCTL_READ_FILE_USN_DATA control code.

Members

MinMajorVersion

The lowest version of the USN change journal accepted by the application. If the input buffer is not specified this defaults to 2.

MaxMajorVersion

The highest version of the USN change journal accepted by the application. If the input buffer is not specified this defaults to 2. To support 128-bit file identifiers used by ReFS this must be 3 or higher.

See also

FSCTL_READ_FILE_USN_DATA


Win32 API reference (ns-winioctl-read_file_usn_data)

READ_FILE_USN_DATA structure

Description

Specifies the versions of the update sequence number (USN) change journal supported by the application. This structure is the input structure to the FSCTL_READ_FILE_USN_DATA control code.

Members

MinMajorVersion

The lowest version of the USN change journal accepted by the application. If the input buffer is not specified this defaults to 2.

MaxMajorVersion

The highest version of the USN change journal accepted by the application. If the input buffer is not specified this defaults to 2. To support 128-bit file identifiers used by ReFS this must be 3 or higher.

See also

FSCTL_READ_USN_JOURNAL

Volume Management Structures