FILE_GET_QUOTA_INFORMATION structure (ntifs.h)

The FILE_GET_QUOTA_INFORMATION structure is used to query for quota information.

Syntax

typedef struct _FILE_GET_QUOTA_INFORMATION {
  ULONG NextEntryOffset;
  ULONG SidLength;
  SID   Sid;
} FILE_GET_QUOTA_INFORMATION, *PFILE_GET_QUOTA_INFORMATION;

Members

NextEntryOffset

Offset, in bytes, of the next FILE_GET_QUOTA_INFORMATION-typed entry. This member is zero if no other entries follow this one.

SidLength

Length, in bytes, of the Sid member.

Sid

Security identifier (SID) whose quota information is to be returned.

Remarks

The FILE_GET_QUOTA_INFORMATION structure is used to query for quota information. The quota information is returned in a FILE_QUOTA_INFORMATION-structured buffer.

This structure must be aligned on a LONG (4-byte) boundary.

Requirements

Requirement Value
Header ntifs.h (include Ntifs.h, Fltkernel.h)

See also

FILE_QUOTA_INFORMATION

IRP_MJ_QUERY_QUOTA

IRP_MJ_SET_QUOTA

IoCheckQuotaBufferValidity

SID