mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
733 B
30 lines
733 B
|
|
//+-----------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (c) Microsoft Corporation 1992 - 1993
|
|
//
|
|
// File: suppcred.h
|
|
//
|
|
// Contents: prototypes for supplemental credential functions
|
|
//
|
|
//
|
|
// History: 9/29/93 MikeSw Created
|
|
//
|
|
//------------------------------------------------------------------------
|
|
|
|
|
|
void
|
|
LsapFreeSupplementalCredentials(
|
|
IN ULONG CredentialCount,
|
|
IN PSECPKG_SUPPLEMENTAL_CRED pCredArray
|
|
);
|
|
|
|
NTSTATUS
|
|
LsapReformatSupplementalCredentials(
|
|
IN ULONG cSupplementalCreds,
|
|
IN PSECPKG_SUPPLEMENTAL_CRED pSupplementalCreds,
|
|
OUT PULONG CredentialCount,
|
|
OUT PSECPKG_SUPPLEMENTAL_CRED * Credentials
|
|
);
|