Identificadores SSPI
SSPI usa los siguientes tipos de identificador y puntero para estos identificadores:
- SecHandle y PSecHandle
- CredHandle y PCredHandle
- CtxtHandle y PCtxtHandle
Estos tipos de identificadores y punteros a estos tipos de identificador se definen de la siguiente manera.
typedef struct _SecHandle {
ULONG_PTR dwLower;
ULONG_PTR dwUpper;
} SecHandle, * PSecHandle;
typedef SecHandle CredHandle;
typedef PSecHandle PCredHandle;
typedef SecHandle CtxtHandle;
typedef PSecHandle PCtxtHandle;