estructura SID_AND_ATTRIBUTES (winnt.h)

La estructura SID_AND_ATTRIBUTES representa un identificador de seguridad (SID) y sus atributos. Los SID se usan para identificar de forma única usuarios o grupos.

Sintaxis

typedef struct _SID_AND_ATTRIBUTES {
#if ...
  PISID Sid;
#else
  PSID  Sid;
#endif
  DWORD Attributes;
} SID_AND_ATTRIBUTES, *PSID_AND_ATTRIBUTES;

Miembros

Sid

Puntero a una estructura SID .

Attributes

Especifica los atributos del SID. Este valor contiene hasta 32 marcas de un solo bit. Su significado depende de la definición y el uso del SID.

Comentarios

Un grupo se representa mediante un SID. Los SID tienen atributos que indican si están habilitados, deshabilitados o obligatorios actualmente. Los SID también indican cómo se usan estos atributos. Una estructura SID_AND_ATTRIBUTES puede representar un SID cuyos atributos cambian con frecuencia. Por ejemplo, SID_AND_ATTRIBUTES se usa para representar grupos en la estructura TOKEN_GROUPS .

Requisitos

   
Cliente mínimo compatible Windows XP [solo aplicaciones de escritorio]
Servidor mínimo compatible Windows Server 2003 [solo aplicaciones de escritorio]
Encabezado winnt.h (incluye Windows.h)

Consulte también

SID

TOKEN_GROUPS

TOKEN_USER