winreg: add winreg_RestoreKeyFlags to IDL.
authorGünther Deschner <gd@samba.org>
Tue, 31 Aug 2010 14:58:23 +0000 (16:58 +0200)
committerGünther Deschner <gd@samba.org>
Tue, 31 Aug 2010 21:17:40 +0000 (23:17 +0200)
Guenther

librpc/idl/winreg.idl

index 48fddb709de2a29288a1ca51b4f2bd2fb7bbb682..c5da3281b167d7f03c8cf8300612cf5dcaba8290 100644 (file)
@@ -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
        );
 
        /******************/