From e5c7ec66982e6d2705c7a103aff5502f441404bb Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 31 Aug 2010 16:58:23 +0200 Subject: winreg: add winreg_RestoreKeyFlags to IDL. Guenther --- librpc/idl/winreg.idl | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/librpc/idl/winreg.idl b/librpc/idl/winreg.idl index 48fddb709d..c5da3281b1 100644 --- a/librpc/idl/winreg.idl +++ b/librpc/idl/winreg.idl @@ -281,10 +281,18 @@ import "lsa.idl", "security.idl", "misc.idl"; /******************/ /* Function: 0x13 */ + + typedef [public,bitmap32bit] bitmap { + REG_WHOLE_HIVE_VOLATILE = 0x00000001, + REG_REFRESH_HIVE = 0x00000002, + REG_NO_LAZY_FLUSH = 0x00000004, + REG_FORCE_RESTORE = 0x00000008 + } winreg_RestoreKeyFlags; + WERROR winreg_RestoreKey( [in,ref] policy_handle *handle, [in,ref] winreg_String *filename, - [in] uint32 flags + [in] winreg_RestoreKeyFlags flags ); /******************/ -- cgit