windows-nt/Source/XPSP1/NT/net/mmc/rtrlib/lsa.h
2020-09-26 16:20:57 +08:00

41 lines
837 B
C

//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1999 - 1999
//
// File: lsa.h
//
//--------------------------------------------------------------------------
#ifndef LSA_H
#define LSA_H
#ifdef __cplusplus
extern "C"
{
#endif
DWORD StorePrivateData(LPCWSTR pszServerNam,
LPCWSTR pszRadiusServerName,
LPCWSTR pszSecret);
DWORD RetrievePrivateData(LPCWSTR pszServerName,
LPCWSTR pszRadiusServerName,
LPWSTR pszSecret,
INT cchSecret);
DWORD DeletePrivateData(LPCWSTR pszServerName,
LPCWSTR pszRadiusServerName);
DWORD RtlEncodeW(PUCHAR pucSeed, LPWSTR pswzString);
DWORD RtlDecodeW(UCHAR ucSeed, LPWSTR pswzString);
#ifdef __cplusplus
};
#endif
#endif // LSA_H