summaryrefslogtreecommitdiffstats
path: root/source/include/reg_objects.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/include/reg_objects.h')
-rw-r--r--source/include/reg_objects.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/source/include/reg_objects.h b/source/include/reg_objects.h
index a31f7097d3c..f6716eba4f3 100644
--- a/source/include/reg_objects.h
+++ b/source/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;
@@ -46,18 +47,5 @@ typedef struct {
char **subkeys;
} REGSUBKEY_CTR;
-/* represent a registry key with all its subkeys and values */
-
-struct _regobj_key;
-
-typedef struct _regobj_key {
- TALLOC_CTX *ctx;
-
- char *name;
-
- REGVAL_CTR values;
- REGSUBKEY_CTR subkeys;
-} REGOBJ_KEY;
-
#endif /* _REG_OBJECTS_H */