diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-02-14 15:23:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:48:16 -0500 |
commit | be852780b427cf03817a87f264e2747ad2fb8e87 (patch) | |
tree | 2dcec0b3ba1cd5e525e9d4cc398d3574a39de335 /source4/librpc/idl/winreg.idl | |
parent | 57b22d9df223aad2aefb353cd3963e418de2b44e (diff) | |
download | samba-be852780b427cf03817a87f264e2747ad2fb8e87.tar.gz samba-be852780b427cf03817a87f264e2747ad2fb8e87.tar.bz2 samba-be852780b427cf03817a87f264e2747ad2fb8e87.zip |
r21343: Add access masks, pointed out by Ronnie Sahlberg.
(This used to be commit e8cdfd0a61354b7a5da43c27e9af4695cfa168d6)
Diffstat (limited to 'source4/librpc/idl/winreg.idl')
-rw-r--r-- | source4/librpc/idl/winreg.idl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source4/librpc/idl/winreg.idl b/source4/librpc/idl/winreg.idl index 98f5d06313..16dd55d151 100644 --- a/source4/librpc/idl/winreg.idl +++ b/source4/librpc/idl/winreg.idl @@ -16,6 +16,14 @@ import "lsa.idl", "initshutdown.idl", "security.idl"; declare bitmap security_secinfo; typedef [bitmap32bit] bitmap { + KEY_QUERY_VALUE = 0x00001, + KEY_SET_VALUE = 0x00002, + KEY_CREATE_SUB_KEY = 0x00004, + KEY_ENUMERATE_SUB_KEYS = 0x00008, + KEY_NOTIFY = 0x00010, + KEY_CREATE_LINK = 0x00020, + KEY_WOW64_64KEY = 0x00100, + KEY_WOW64_32KEY = 0x00200 } winreg_AccessMask; typedef [v1_enum] enum { |