diff options
author | Ralph Boehme <slow@samba.org> | 2019-08-23 18:43:02 +0200 |
---|---|---|
committer | Ralph Boehme <slow@samba.org> | 2019-10-09 15:52:55 +0000 |
commit | c9b6298249cd2f670e6953c9c3ef2e977f8bc565 (patch) | |
tree | addf0f85b561e4a5e41151a1efc540a276730bdc /librpc/idl | |
parent | 63cbeaf0e7472a7321f27327091217c909864100 (diff) | |
download | samba-c9b6298249cd2f670e6953c9c3ef2e977f8bc565.tar.gz |
mdssvc.idl: pass policy_handle as pointer
No change in behaviour, this just changes all functions to take the
policy_handle argument as pointer instead of passing it by value.
This is how all other IDLs pass it.
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Noel Power <noel.power@suse.com>
Autobuild-User(master): Ralph Böhme <slow@samba.org>
Autobuild-Date(master): Wed Oct 9 15:52:55 UTC 2019 on sn-devel-184
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/mdssvc.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/librpc/idl/mdssvc.idl b/librpc/idl/mdssvc.idl index 43447961b0d..e7004f07419 100644 --- a/librpc/idl/mdssvc.idl +++ b/librpc/idl/mdssvc.idl @@ -18,7 +18,7 @@ interface mdssvc ); void mdssvc_unknown1( - [in] policy_handle handle, + [in] policy_handle *handle, [in] uint32 unkn1, /* always 0, some status ? */ [in] uint32 device_id, [in] uint32 unkn3, /* = mdssvc_open.unkn2 ? */ @@ -37,7 +37,7 @@ interface mdssvc } mdssvc_blob; void mdssvc_cmd( - [in] policy_handle handle, + [in] policy_handle *handle, [in] uint32 unkn1, /* always 0, status ? */ [in] uint32 device_id, [in] uint32 unkn3, /* = mdssvc_open.unkn2 ? */ @@ -57,7 +57,7 @@ interface mdssvc ); void mdssvc_close( - [in] policy_handle in_handle, + [in] policy_handle *in_handle, [in] uint32 unkn1, /* always 0, some status ? */ [in] uint32 device_id, [in] uint32 unkn2, /* = mdssvc_open.unkn2 ? */ |