Condividi tramite


SECURITY_STRING struttura (sspi.h)

La struttura SECURITY_STRING viene usata come interfaccia stringa per le operazioni del kernel ed è un clone della struttura UNICODE_STRING . Questa operazione viene usata per la modalità a 32 bit.

Sintassi

typedef struct _SECURITY_STRING {
  unsigned short Length;
  unsigned short MaximumLength;
  unsigned short *Buffer;
} SECURITY_STRING, *PSECURITY_STRING;

Members

Length

Specifica la lunghezza, in byte, della stringa a cui punta il membro Buffer , non incluso il carattere NULL terminante, se presente.

MaximumLength

Specifica le dimensioni totali, in byte, della memoria allocata per buffer. Fino a MassimoLength byte può essere scritto nel buffer senza calpestare la memoria.

Buffer

Puntatore a una stringa di caratteri wide. Si noti che le stringhe restituite dalle varie funzioni LSA potrebbero non essere terminate con null.

Requisiti

Requisito Valore
Client minimo supportato Windows XP [solo app desktop]
Server minimo supportato Windows Server 2003 [solo app desktop]
Intestazione sspi.h