Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

SSPI uses the following handle types and pointers to these handles:

  • SecHandle and PSecHandle

  • CredHandle and PCredHandle

  • CtxtHandle and PCtxtHandle

These handle types and pointers to these handle types are defined in the following syntax:

Copy Code
typedef struct _SecHandle {
  ULONG_PTR	 dwLower;
  ULONG_PTR	 dwUpper;
} SecHandle, * PSecHandle;
typedef SecHandle	CredHandle;
typedef PSecHandle   PCredHandle;
typedef SecHandle	CtxtHandle;
typedef PSecHandle   PCtxtHandle;

See Also