BULK_SECURITY_TEST_DATA - NtDoc

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

typedef struct {
  ACCESS_MASK DesiredAccess;
  ULONG       SecurityIds[1];
} BULK_SECURITY_TEST_DATA, *PBULK_SECURITY_TEST_DATA;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

The BULK_SECURITY_TEST_DATA structure is used with the FSCTL_SECURITY_ID_CHECK control code to verify security identifiers (SIDs) against specified access rights in bulk.

Members

DesiredAccess

An ACCESS_MASK value that specifies the access rights to be checked against the provided security identifiers. This mask defines the permissions required for the operation.

SecurityIds[1]

An array of security identifiers (SIDs) to be tested.

See also

FSCTL_SECURITY_ID_CHECK

ACCESS_MASK