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

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1999 - 1999
  6. //
  7. // File: lsa.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #ifndef LSA_H
  11. #define LSA_H
  12. #ifdef __cplusplus
  13. extern "C"
  14. {
  15. #endif
  16. DWORD StorePrivateData(LPCWSTR pszServerNam,
  17. LPCWSTR pszRadiusServerName,
  18. LPCWSTR pszSecret);
  19. DWORD RetrievePrivateData(LPCWSTR pszServerName,
  20. LPCWSTR pszRadiusServerName,
  21. LPWSTR pszSecret,
  22. INT cchSecret);
  23. DWORD DeletePrivateData(LPCWSTR pszServerName,
  24. LPCWSTR pszRadiusServerName);
  25. DWORD RtlEncodeW(PUCHAR pucSeed, LPWSTR pswzString);
  26. DWORD RtlDecodeW(UCHAR ucSeed, LPWSTR pswzString);
  27. #ifdef __cplusplus
  28. };
  29. #endif
  30. #endif // LSA_H