diff options
Diffstat (limited to 'source3/include/reg_objects.h')
-rw-r--r-- | source3/include/reg_objects.h | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/source3/include/reg_objects.h b/source3/include/reg_objects.h index 282b1a63dd..a0a830622c 100644 --- a/source3/include/reg_objects.h +++ b/source3/include/reg_objects.h @@ -23,13 +23,7 @@ /* low level structure to contain registry values */ -struct regval_blob { - fstring valuename; - uint16 type; - /* this should be encapsulated in an RPC_DATA_BLOB */ - uint32 size; /* in bytes */ - uint8 *data_p; -}; +struct regval_blob; /* * A REG_SZ string is not necessarily NULL terminated. When retrieving it from @@ -58,11 +52,7 @@ struct registry_value { /* container for registry values */ -struct regval_ctr { - uint32 num_values; - struct regval_blob **values; - int seqnum; -}; +struct regval_ctr; /* container for registry subkey names */ |