diff options
author | Günther Deschner <gd@samba.org> | 2009-04-15 01:30:12 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-04-21 12:42:51 +0200 |
commit | 38264bb3b86a3c9da941070f29ec08227c471d2b (patch) | |
tree | 2114d951d07ddeed4dce904eb9c9c9e3557242d5 /librpc/idl/winreg.idl | |
parent | da92e54236293460e307edd52ca7f1e20c6f23ef (diff) | |
download | samba-38264bb3b86a3c9da941070f29ec08227c471d2b.tar.gz samba-38264bb3b86a3c9da941070f29ec08227c471d2b.tar.xz samba-38264bb3b86a3c9da941070f29ec08227c471d2b.zip |
s3-secdesc: move all winreg access bits to IDL.
Guenther
Diffstat (limited to 'librpc/idl/winreg.idl')
-rw-r--r-- | librpc/idl/winreg.idl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/librpc/idl/winreg.idl b/librpc/idl/winreg.idl index b905bdea7bd..18b5edcb5d9 100644 --- a/librpc/idl/winreg.idl +++ b/librpc/idl/winreg.idl @@ -14,6 +14,10 @@ import "lsa.idl", "security.idl"; { typedef bitmap security_secinfo security_secinfo; + /* + * Access Bits for registry ACLS + */ + typedef [bitmap32bit] bitmap { KEY_QUERY_VALUE = 0x00001, KEY_SET_VALUE = 0x00002, @@ -25,6 +29,22 @@ import "lsa.idl", "security.idl"; KEY_WOW64_32KEY = 0x00200 } winreg_AccessMask; + const int REG_KEY_READ = ( STANDARD_RIGHTS_READ_ACCESS | + KEY_QUERY_VALUE | + KEY_ENUMERATE_SUB_KEYS | + KEY_NOTIFY); + + const int REG_KEY_EXECUTE = REG_KEY_READ; + + const int REG_KEY_WRITE = ( STANDARD_RIGHTS_WRITE_ACCESS | + KEY_SET_VALUE | + KEY_CREATE_SUB_KEY); + + const int REG_KEY_ALL = ( STANDARD_RIGHTS_REQUIRED_ACCESS | + REG_KEY_READ | + REG_KEY_WRITE | + KEY_CREATE_LINK); + typedef [public,v1_enum] enum { REG_NONE = 0, REG_SZ = 1, |