Bewerken

Delen via


BULK_SECURITY_TEST_DATA structure (ntifs.h)

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.

Syntax

typedef struct {
  ACCESS_MASK DesiredAccess;
  ULONG       SecurityIds[1];
} BULK_SECURITY_TEST_DATA, *PBULK_SECURITY_TEST_DATA;

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.

Requirements

Requirement Value
Minimum supported client Windows XP
Header ntifs.h

See also

FSCTL_SECURITY_ID_CHECK

ACCESS_MASK