mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
svcctl: Fix IDL for svcctl_QueryServiceObjectSecurity and Set call.
Guenther
This commit is contained in:
parent
9945d15a5d
commit
f0d045be4f
@ -156,9 +156,9 @@ import "misc.idl", "security.idl";
|
||||
/* Function 0x04 */
|
||||
WERROR svcctl_QueryServiceObjectSecurity(
|
||||
[in] policy_handle *handle,
|
||||
[in] uint32 security_flags,
|
||||
[out,ref,size_is(buffer_size)] uint8 *buffer,
|
||||
[in,range(0,0x40000)] uint32 buffer_size,
|
||||
[in] security_secinfo security_flags,
|
||||
[out,ref,size_is(offered)] uint8 *buffer,
|
||||
[in,range(0,0x40000)] uint32 offered,
|
||||
[out,ref,range(0,0x40000)] uint32 *needed
|
||||
);
|
||||
|
||||
@ -166,9 +166,9 @@ import "misc.idl", "security.idl";
|
||||
/* Function 0x05 */
|
||||
WERROR svcctl_SetServiceObjectSecurity(
|
||||
[in] policy_handle *handle,
|
||||
[in] uint32 security_flags,
|
||||
[in,ref,size_is(buffer_size)] uint8 *buffer,
|
||||
[in] uint32 buffer_size
|
||||
[in] security_secinfo security_flags,
|
||||
[in,ref,size_is(offered)] uint8 *buffer,
|
||||
[in] uint32 offered
|
||||
);
|
||||
|
||||
/*****************/
|
||||
|
Loading…
Reference in New Issue
Block a user