1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

r26149: Add IDL for wkssvc_NetrWkstaUserSetInfo(). No torture test yet.

Guenther
This commit is contained in:
Günther Deschner 2007-11-27 10:25:48 +01:00 committed by Stefan Metzmacher
parent 1a472cc1b2
commit 810b63a8ec
2 changed files with 10 additions and 7 deletions

View File

@ -208,11 +208,14 @@ import "srvsvc.idl";
[out] [switch_is(level)] [ref] wkssvc_NetrWkstaUserInfo *info
);
/*****************************/
/* Function 0x04 */
WERROR WKSSVC_NETRWKSTAUSERSETINFO ();
WERROR wkssvc_NetrWkstaUserSetInfo(
[in] [string,charset(UTF16)] uint16 *unknown,
[in] uint32 level,
[out] [switch_is(level)] [ref] wkssvc_NetrWkstaUserInfo *info,
[in,out] uint32 *parm_err
);
/*****************************/
/* Function 0x05 */

View File

@ -123,10 +123,10 @@ static WERROR dcesrv_wkssvc_NetrWkstaUserGetInfo(struct dcesrv_call_state *dce_c
/*
WKSSVC_NETRWKSTAUSERSETINFO
wkssvc_NetrWkstaUserSetInfo
*/
static WERROR dcesrv_WKSSVC_NETRWKSTAUSERSETINFO(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
struct WKSSVC_NETRWKSTAUSERSETINFO *r)
static WERROR dcesrv_wkssvc_NetrWkstaUserSetInfo(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
struct wkssvc_NetrWkstaUserSetInfo *r)
{
DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
}