struttura SID_AND_ATTRIBUTES (winnt.h)
La struttura SID_AND_ATTRIBUTES rappresenta un SID (Security Identifier ) e i relativi attributi. I SID vengono usati per identificare in modo univoco utenti o gruppi.
Sintassi
typedef struct _SID_AND_ATTRIBUTES {
#if ...
PISID Sid;
#else
PSID Sid;
#endif
DWORD Attributes;
} SID_AND_ATTRIBUTES, *PSID_AND_ATTRIBUTES;
Members
Sid
Puntatore a una struttura SID .
Attributes
Specifica gli attributi del SID. Questo valore contiene fino a 32 flag a un bit. Il suo significato dipende dalla definizione e dall'uso del SID.
Commenti
Un gruppo è rappresentato da un SID. I SID hanno attributi che indicano se sono attualmente abilitati, disabilitati o obbligatori. I SID indicano anche come vengono usati questi attributi. Una struttura SID_AND_ATTRIBUTES può rappresentare un SID i cui attributi cambiano frequentemente. Ad esempio, SID_AND_ATTRIBUTES viene usato per rappresentare i gruppi nella struttura TOKEN_GROUPS .
Requisiti
Client minimo supportato | Windows XP [solo app desktop] |
Server minimo supportato | Windows Server 2003 [solo app desktop] |
Intestazione | winnt.h (include Windows.h) |