mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
netapi: add NetUserSetInfo to public header.
Guenther
(This used to be commit 0acf8352a3
)
This commit is contained in:
parent
c7b151e78c
commit
ce6db92d95
@ -706,6 +706,28 @@ NET_API_STATUS NetUserGetInfo(const char * server_name /* [in] */,
|
||||
uint32_t level /* [in] */,
|
||||
uint8_t **buffer /* [out] [ref] */);
|
||||
|
||||
/************************************************************//**
|
||||
*
|
||||
* NetUserSetInfo
|
||||
*
|
||||
* @brief Set User Information
|
||||
*
|
||||
* @param[in] server_name The server name to connect to
|
||||
* @param[in] user_name The name of the user that is going to be modified
|
||||
* @param[in] level The level defining the requested USER_INFO_X structure
|
||||
* @param[in] buf The buffer containing a USER_INFO_X structure
|
||||
* @param[out] parm_err The returned parameter error number if any
|
||||
* @return NET_API_STATUS
|
||||
*
|
||||
* example user/user_setinfo.c
|
||||
***************************************************************/
|
||||
|
||||
NET_API_STATUS NetUserSetInfo(const char * server_name /* [in] */,
|
||||
const char * user_name /* [in] */,
|
||||
uint32_t level /* [in] */,
|
||||
uint8_t *buffer /* [in] [ref] */,
|
||||
uint32_t *parm_err /* [out] [ref] */);
|
||||
|
||||
/************************************************************//**
|
||||
*
|
||||
* NetQueryDisplayInformation
|
||||
|
Loading…
Reference in New Issue
Block a user