Platform SDK: Logon Authentication

SecBufferDesc

The SecBufferDesc structure describes an array of SecBuffer structures to pass from a transport application to a security package.

typedef struct _SecBufferDesc {
    ULONG        ulVersion;
    ULONG        cBuffers;
    PSecBuffer   pBuffers;
} SecBufferDesc, * PSecBufferDesc;

Members

ulVersion
Specifies the version number of this structure. This member must be SECBUFFER_VERSION.
cBuffers
Indicates the number of SecBuffer structures in the pBuffers array.
pBuffers
Pointer to an array of SecBuffer structures.

Requirements

  Windows NT/2000: Requires Windows NT 3.51 or later.
  Windows 95/98: Requires Windows 95 or later.
  Header: Declared in Sspi.h; include Security.h.

See Also

SecBuffer