SECURITY_CAPABILITIES structure (winnt.h)

The SECURITY_CAPABILITIES structure defines the security capabilities of the app container.

Syntax

typedef struct _SECURITY_CAPABILITIES {
#if ...
  PISID               AppContainerSid;
#if ...
  PSID_AND_ATTRIBUTES Capabilities;
#else
  PSID                AppContainerSid;
#endif
#else
  PSID_AND_ATTRIBUTES Capabilities;
#endif
  DWORD               CapabilityCount;
  DWORD               Reserved;
} SECURITY_CAPABILITIES, *PSECURITY_CAPABILITIES, *LPSECURITY_CAPABILITIES;

Members

AppContainerSid

The SID of the app container.

Capabilities

The specific capabilities.

CapabilityCount

The number of the capabilities.

Reserved

This member is reserved. Do not use it.

Requirements

Requirement Value
Minimum supported client Windows 8 [desktop apps only]
Minimum supported server Windows Server 2012 [desktop apps only]
Header winnt.h

See also

Capability SID Constants