FILE_STREAM_RESERVATION_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTIOAPI_H

// private
typedef struct _FILE_STREAM_RESERVATION_INFORMATION
{
    ULONG_PTR TrackedReservation;
    ULONG_PTR EnforcedReservation;
} FILE_STREAM_RESERVATION_INFORMATION, *PFILE_STREAM_RESERVATION_INFORMATION;

#endif

View code on GitHub
// ntifs.h

typedef struct _FILE_STREAM_RESERVATION_INFORMATION {
  LONGLONG TrackedReservation;
  LONGLONG EnforcedReservation;
} FILE_STREAM_RESERVATION_INFORMATION, *PFILE_STREAM_RESERVATION_INFORMATION;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

The FILE_STREAM_RESERVATION_INFORMATION structure contains information about the reservation of space for a file stream.

Members

TrackedReservation

Amount of storage space that is currently tracked as reserved for the file stream.

EnforcedReservation

Amount of storage space that is currently enforced as reserved for the file stream.

Remarks

See also

FILE_INFORMATION_CLASS

NtQueryInformationFile