windows-nt/Source/XPSP1/NT/ds/inc/kerbcli.h
2020-09-26 16:20:57 +08:00

55 lines
1,022 B
C

//+-----------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (c) Microsoft Corporation 1992 - 1999
//
// File: kerbcli.h
//
// Contents: exported functions from kerbcli.lib
//
//
// History: 24-May-1999 MikeSw Created
//
//------------------------------------------------------------------------
#ifndef __KERBCLI_H__
#define __KERBCLI_H__
#ifdef __cplusplus
extern "C" {
#endif
NTSTATUS
KerbChangePasswordUser(
IN LPWSTR DomainName,
IN LPWSTR UserName,
IN LPWSTR OldPassword,
IN LPWSTR NewPassword
);
NTSTATUS
KerbSetPasswordUser(
IN LPWSTR DomainName,
IN LPWSTR UserName,
IN LPWSTR NewPassword,
IN OPTIONAL PCredHandle CredentialsHandle
);
NTSTATUS
KerbSetPasswordUserEx(
IN LPWSTR DomainName,
IN LPWSTR UserName,
IN LPWSTR NewPassword,
IN OPTIONAL PCredHandle CredentialsHandle,
IN OPTIONAL LPWSTR KdcAddress
);
#ifdef __cplusplus
}
#endif
#endif // __KERBCLI_H__