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.

30 lines
542 B

  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. ChangePw.h
  5. Abstract:
  6. This module implements password change from downlevel clients.
  7. XsChangePasswordSam is called by XsNetUserPasswordSet2 in
  8. apiuser.c. I've put this in a seperate file because it #includes
  9. a private SAM header.
  10. Author:
  11. Dave Hart (davehart) 31-Apr-1992
  12. Revision History:
  13. --*/
  14. NET_API_STATUS
  15. XsChangePasswordSam (
  16. IN PUNICODE_STRING UserName,
  17. IN PVOID OldPassword,
  18. IN PVOID NewPassword,
  19. IN BOOLEAN Encrypted
  20. );