1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-17 13:57:47 +03:00

netapi: add NetUserChangePassword() to public headers.

Guenther
This commit is contained in:
Günther Deschner 2008-06-25 00:47:41 +02:00
parent f4ce688710
commit 5d06891238

@ -509,6 +509,26 @@ NET_API_STATUS NetUserEnum(const char * server_name /* [in] */,
uint32_t *total_entries /* [out] [ref] */,
uint32_t *resume_handle /* [in,out] [ref] */);
/************************************************************//**
*
* NetUserChangePassword
*
* @brief Change the password for a user on a given server or in a given domain
*
* @param[in] domain_name The server or domain name to connect to
* @param[in] user_name The user account to change the password for
* @param[in] old_password The user account's old password
* @param[in] old_password The user account's new password
* @return NET_API_STATUS
*
* example user/user_chgpwd.c
***************************************************************/
NET_API_STATUS NetUserChangePassword(const char * domain_name /* [in] */,
const char * user_name /* [in] */,
const char * old_password /* [in] */,
const char * new_password /* [in] */);
/************************************************************//**
*
* NetQueryDisplayInformation