diff options
author | Gerald Carter <jerry@samba.org> | 2005-06-30 02:59:29 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:58:08 -0500 |
commit | b319bdd32f49f32b6d27681e1a23dfb6ba4bb878 (patch) | |
tree | 1cb0fe20571ccdc27f3927fc4d80532fa6cb2d50 /source3/include | |
parent | aa3b0b190d4069c817f63e36e95b86f43a8a6067 (diff) | |
download | samba-b319bdd32f49f32b6d27681e1a23dfb6ba4bb878.tar.gz samba-b319bdd32f49f32b6d27681e1a23dfb6ba4bb878.tar.bz2 samba-b319bdd32f49f32b6d27681e1a23dfb6ba4bb878.zip |
r8007: * cleanup unused structure from reg_objects.h
* make regdb_store_XXX() and regdb_fetch_XXX() functions non-static
* use case sensitive string lookups in reg_dynamic.c since the
keys have already been normalized
* move to new design for making printing related data available
via the winreg pipe (with the intent of allowing writes)
(This used to be commit 28c7293ee9e68b913faf8d74d63f73e09087169b)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/reg_objects.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/source3/include/reg_objects.h b/source3/include/reg_objects.h index 753425a7f9..f6716eba4f 100644 --- a/source3/include/reg_objects.h +++ b/source3/include/reg_objects.h @@ -47,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 */ |