diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-12-08 22:02:49 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:06:27 -0500 |
commit | 2c93ec0ff04165b6ed5898f1dc3e9413cbe6bc81 (patch) | |
tree | a8ff7891ffc5bd48ad16f6701bea3d846636db10 /source4/librpc/idl | |
parent | 87d5e061e0ddd41e21a60b8934db339e5ef5f306 (diff) | |
download | samba-2c93ec0ff04165b6ed5898f1dc3e9413cbe6bc81.tar.gz samba-2c93ec0ff04165b6ed5898f1dc3e9413cbe6bc81.tar.bz2 samba-2c93ec0ff04165b6ed5898f1dc3e9413cbe6bc81.zip |
r4105: Fix IDL for QueryValue() and add a torture test for it.
Thanks to Michael Allen for some hints on what was wrong with the previous IDL.
(This used to be commit 0fa6d847433eb281eaff15b8be4a26f898689f0a)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/winreg.idl | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/source4/librpc/idl/winreg.idl b/source4/librpc/idl/winreg.idl index 03b48be02a..a3e81f3a94 100644 --- a/source4/librpc/idl/winreg.idl +++ b/source4/librpc/idl/winreg.idl @@ -229,15 +229,14 @@ /* Function: 0x11 */ WERROR winreg_QueryValue( [in,ref] policy_handle *handle, - [in] winreg_String valuename, - [in] uint32 *reserved, + [in] winreg_String value_name, + [in,out] uint32 *type, [in] uint32 *offered, - [in] uint32 *unknown1, - [in] uint32 *unknown2, - [out] uint32 *type, - [out] uint8 *data, - [in,out] uint32 *offered2, - [in,out] uint32 *val_length + [in] uint32 unknown1, + [in] uint32 unknown2, + [out] EnumValueOut *value_out, + [in,out] uint32 *value_len1, + [in,out] uint32 *value_len2 ); /******************/ |