From 2fb7ff7d9def29e21dd87f565ccda5437c848cdd Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Fri, 24 Jun 2005 14:55:09 +0000 Subject: r7878: mostly just a rename of REG_INFO to REG_QUERY_VALUE for better clarity (This used to be commit d50f0ba07e285728605c8e8aae9d9a251a525e78) --- source3/include/reg_objects.h | 1 + source3/include/rpc_reg.h | 7 +++---- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'source3/include') diff --git a/source3/include/reg_objects.h b/source3/include/reg_objects.h index a31f7097d3..753425a7f9 100644 --- a/source3/include/reg_objects.h +++ b/source3/include/reg_objects.h @@ -26,6 +26,7 @@ typedef struct { fstring valuename; uint16 type; + /* this should be encapsulated in an RPC_DATA_BLOB */ uint32 size; /* in bytes */ uint8 *data_p; } REGISTRY_VALUE; diff --git a/source3/include/rpc_reg.h b/source3/include/rpc_reg.h index f89571484c..c343e9c594 100644 --- a/source3/include/rpc_reg.h +++ b/source3/include/rpc_reg.h @@ -43,7 +43,7 @@ #define REG_GET_KEY_SEC 0x0c #define REG_OPEN_ENTRY 0x0f #define REG_QUERY_KEY 0x10 -#define REG_INFO 0x11 +#define REG_QUERY_VALUE 0x11 #define REG_RESTORE_KEY 0x13 #define REG_SAVE_KEY 0x14 #define REG_SET_KEY_SEC 0x15 @@ -241,7 +241,6 @@ typedef struct { } REG_Q_DELETE_KEY; typedef struct { - POLICY_HND key_pol; WERROR status; } REG_R_DELETE_KEY; @@ -389,7 +388,7 @@ typedef struct { uint32 ptr_buflen2; uint32 buflen2; -} REG_Q_INFO; +} REG_Q_QUERY_VALUE; typedef struct { uint32 *type; @@ -397,7 +396,7 @@ typedef struct { uint32 *buf_max_len; uint32 *buf_len; WERROR status; /* return status */ -} REG_R_INFO; +} REG_R_QUERY_VALUE; /***********************************************/ -- cgit