From 8185d31fb0a4ef0219fe15f825a9340083f4c277 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 23 Mar 2009 22:27:59 +0100 Subject: s3:registry: replace typedef REGISTRY_VALUE by struct regval_blob Michael --- source3/include/reg_objects.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/include/reg_objects.h') diff --git a/source3/include/reg_objects.h b/source3/include/reg_objects.h index 029f8544d6..0badf223ae 100644 --- a/source3/include/reg_objects.h +++ b/source3/include/reg_objects.h @@ -23,13 +23,13 @@ /* structure to contain registry values */ -typedef struct { +struct regval_blob { fstring valuename; uint16 type; /* this should be encapsulated in an RPC_DATA_BLOB */ uint32 size; /* in bytes */ uint8 *data_p; -} REGISTRY_VALUE; +}; /* * A REG_SZ string is not necessarily NULL terminated. When retrieving it from @@ -60,7 +60,7 @@ struct registry_value { struct regval_ctr { uint32 num_values; - REGISTRY_VALUE **values; + struct regval_blob **values; int seqnum; }; -- cgit