mirror of https://github.com/tongzx/nt5src
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
30 lines
542 B
/*++
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
ChangePw.h
|
|
|
|
Abstract:
|
|
|
|
This module implements password change from downlevel clients.
|
|
XsChangePasswordSam is called by XsNetUserPasswordSet2 in
|
|
apiuser.c. I've put this in a seperate file because it #includes
|
|
a private SAM header.
|
|
|
|
Author:
|
|
|
|
Dave Hart (davehart) 31-Apr-1992
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
NET_API_STATUS
|
|
XsChangePasswordSam (
|
|
IN PUNICODE_STRING UserName,
|
|
IN PVOID OldPassword,
|
|
IN PVOID NewPassword,
|
|
IN BOOLEAN Encrypted
|
|
);
|