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.

43 lines
1.0 KiB

  1. //+-----------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) Microsoft Corporation 1992 - 1996
  6. //
  7. // File: kerbpass.cxx
  8. //
  9. // Contents: Code for changing the Kerberos password on a KDC
  10. //
  11. //
  12. // History: 17-October-1998 MikeSw Created
  13. //
  14. //------------------------------------------------------------------------
  15. #ifndef __KERBPASS_H__
  16. #define __KERBPASS_H__
  17. #include <kpasswd.h>
  18. NTSTATUS NTAPI
  19. KerbChangePassword(
  20. IN PLSA_CLIENT_REQUEST ClientRequest,
  21. IN PVOID ProtocolSubmitBuffer,
  22. IN PVOID ClientBufferBase,
  23. IN ULONG SubmitBufferLength,
  24. OUT PVOID *ProtocolReturnBuffer,
  25. OUT PULONG ReturnBufferLength,
  26. OUT PNTSTATUS ProtocolStatus
  27. );
  28. NTSTATUS NTAPI
  29. KerbSetPassword(
  30. IN PLSA_CLIENT_REQUEST ClientRequest,
  31. IN PVOID ProtocolSubmitBuffer,
  32. IN PVOID ClientBufferBase,
  33. IN ULONG SubmitBufferLength,
  34. OUT PVOID *ProtocolReturnBuffer,
  35. OUT PULONG ReturnBufferLength,
  36. OUT PNTSTATUS ProtocolStatus
  37. );
  38. #endif // __KERBPASS_H__