Source code of Windows XP (NT5)
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.

53 lines
947 B

  1. //+-----------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) Microsoft Corporation 1991 - 1992
  6. //
  7. // File: secur32p.h
  8. //
  9. // Contents: Private functions between secur32.dll and lsa
  10. //
  11. //
  12. // History: 16 Dec 98 RichardW Created
  13. //
  14. //------------------------------------------------------------------------
  15. #ifndef __SECUR32P_H__
  16. #define __SECUR32P_H__
  17. NTSTATUS
  18. WINAPI
  19. SecCacheSspiPackages(
  20. VOID
  21. );
  22. BOOLEAN
  23. WINAPI
  24. SecpTranslateName(
  25. PWSTR Domain,
  26. LPCWSTR Name,
  27. EXTENDED_NAME_FORMAT Supplied,
  28. EXTENDED_NAME_FORMAT Desired,
  29. PWSTR TranslatedName,
  30. PULONG TranslatedNameSize
  31. );
  32. BOOLEAN
  33. WINAPI
  34. SecpTranslateNameEx(
  35. PWSTR Domain,
  36. LPCWSTR Name,
  37. EXTENDED_NAME_FORMAT Supplied,
  38. EXTENDED_NAME_FORMAT *DesiredSelection,
  39. ULONG DesiredCount,
  40. PWSTR **TranslatedNames
  41. );
  42. VOID
  43. SecpFreeMemory(
  44. IN PVOID p
  45. );
  46. #endif