summaryrefslogtreecommitdiff
path: root/librpc/gen_ndr/winreg.h
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2010-04-09 18:33:25 +0200
committerGünther Deschner <gd@samba.org>2010-04-09 18:33:45 +0200
commit202d330be6f6fe249b0ec241342762a533320d1b (patch)
tree6a9974076286fdf01fdc0381199a63d383e85678 /librpc/gen_ndr/winreg.h
parent1cec3029e5ed5b6be3e7817c05d5f7214dfb4181 (diff)
downloadsamba-202d330be6f6fe249b0ec241342762a533320d1b.tar.gz
samba-202d330be6f6fe249b0ec241342762a533320d1b.tar.bz2
samba-202d330be6f6fe249b0ec241342762a533320d1b.zip
s3: re-run make samba3-idl.
Guenther
Diffstat (limited to 'librpc/gen_ndr/winreg.h')
-rw-r--r--librpc/gen_ndr/winreg.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/librpc/gen_ndr/winreg.h b/librpc/gen_ndr/winreg.h
index c0e13d0d17..b412d353b9 100644
--- a/librpc/gen_ndr/winreg.h
+++ b/librpc/gen_ndr/winreg.h
@@ -14,6 +14,7 @@
#define REG_KEY_EXECUTE ( REG_KEY_READ )
#define REG_KEY_WRITE ( (STANDARD_RIGHTS_WRITE_ACCESS|KEY_SET_VALUE|KEY_CREATE_SUB_KEY) )
#define REG_KEY_ALL ( (STANDARD_RIGHTS_REQUIRED_ACCESS|REG_KEY_READ|REG_KEY_WRITE|KEY_CREATE_LINK) )
+#define REG_OPTION_NON_VOLATILE ( 0x00000000 )
/* bitmap winreg_AccessMask */
#define KEY_QUERY_VALUE ( 0x00001 )
#define KEY_SET_VALUE ( 0x00002 )
@@ -43,7 +44,6 @@ struct winreg_SecBuf {
};
/* bitmap winreg_KeyOptions */
-#define REG_OPTION_NON_VOLATILE ( 0x00000000 )
#define REG_OPTION_VOLATILE ( 0x00000001 )
#define REG_OPTION_CREATE_LINK ( 0x00000002 )
#define REG_OPTION_BACKUP_RESTORE ( 0x00000004 )
@@ -621,6 +621,17 @@ struct winreg_OpenHKPN {
struct winreg_QueryMultipleValues2 {
struct {
+ struct policy_handle *key_handle;/* [ref] */
+ uint32_t num_values;
+ uint32_t offered;
+ struct QueryMultipleValue *values;/* [ref,length_is(num_values),size_is(num_values)] */
+ uint8_t *buffer;/* [unique,length_is(offered),size_is(offered)] */
+ } in;
+
+ struct {
+ uint32_t *needed;/* [ref] */
+ struct QueryMultipleValue *values;/* [ref,length_is(num_values),size_is(num_values)] */
+ uint8_t *buffer;/* [unique,length_is(offered),size_is(offered)] */
WERROR result;
} out;