diff options
author | Günther Deschner <gd@samba.org> | 2010-04-08 23:46:15 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-04-08 23:48:43 +0200 |
commit | e7a157317a1cec363efa084cfa3d40555604568d (patch) | |
tree | 1454d36fd81d2b574d656084143306aecf5e412e /librpc/idl/winreg.idl | |
parent | 26d928e9482725fe66db05f23af573fdea61a291 (diff) | |
download | samba-e7a157317a1cec363efa084cfa3d40555604568d.tar.gz samba-e7a157317a1cec363efa084cfa3d40555604568d.tar.bz2 samba-e7a157317a1cec363efa084cfa3d40555604568d.zip |
winreg: fill in some winreg IDL gaps.
Guenther
Diffstat (limited to 'librpc/idl/winreg.idl')
-rw-r--r-- | librpc/idl/winreg.idl | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/librpc/idl/winreg.idl b/librpc/idl/winreg.idl index a21bbd4a62..de2067cc2c 100644 --- a/librpc/idl/winreg.idl +++ b/librpc/idl/winreg.idl @@ -269,7 +269,11 @@ import "lsa.idl", "security.idl", "misc.idl"; /******************/ /* Function: 0x12 */ - [todo] WERROR winreg_ReplaceKey( + WERROR winreg_ReplaceKey( + [in,ref] policy_handle *handle, + [in,ref] winreg_String *subkey, + [in,ref] winreg_String *new_file, + [in,ref] winreg_String *old_file ); /******************/ @@ -315,7 +319,9 @@ import "lsa.idl", "security.idl", "misc.idl"; /******************/ /* Function: 0x17 */ - [todo] WERROR winreg_UnLoadKey( + WERROR winreg_UnLoadKey( + [in,ref] policy_handle *handle, + [in,ref] winreg_String *subkey ); /******************/ @@ -395,7 +401,11 @@ import "lsa.idl", "security.idl", "misc.idl"; /******************/ /* Function: 0x1f */ - [todo] WERROR winreg_SaveKeyEx( + WERROR winreg_SaveKeyEx( + [in,ref] policy_handle *handle, + [in,ref] winreg_String *filename, + [in,unique] KeySecurityAttribute *sec_attrib, + [in] uint32 flags ); /******************/ |