Leaked source code of windows server 2003
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.
 
 
 
 
 
 

40 lines
877 B

//+-------------------------------------------------------------------------
//
// 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