diff options
author | Günther Deschner <gd@samba.org> | 2010-04-09 12:24:18 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-04-09 13:57:17 +0200 |
commit | 8805490853f449dc2d71e80d5052a6615740c2a2 (patch) | |
tree | 3e1bc7839ff1c479ae90a768e8a02b76551933e8 /librpc/idl | |
parent | bc9289995a4d338644aec8a504e284ac65d73c53 (diff) | |
download | samba-8805490853f449dc2d71e80d5052a6615740c2a2.tar.gz samba-8805490853f449dc2d71e80d5052a6615740c2a2.tar.bz2 samba-8805490853f449dc2d71e80d5052a6615740c2a2.zip |
winreg: keytype options is a bitmask.
Guenther
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/winreg.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/librpc/idl/winreg.idl b/librpc/idl/winreg.idl index bb0870cf9e..ffdef7ac28 100644 --- a/librpc/idl/winreg.idl +++ b/librpc/idl/winreg.idl @@ -112,7 +112,7 @@ import "lsa.idl", "security.idl", "misc.idl"; boolean8 inherit; } winreg_SecBuf; - typedef [v1_enum] enum { + typedef [bitmap32bit] bitmap { REG_KEYTYPE_NON_VOLATILE = 0x00000000, REG_KEYTYPE_VOLATILE = 0x00000001, REG_KEYTYPE_SYMLINK = 0x00000002 |