summaryrefslogtreecommitdiffstats
path: root/source/include/reg_objects.h
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2005-06-30 02:59:29 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:58:08 -0500
commit28c7293ee9e68b913faf8d74d63f73e09087169b (patch)
tree1672f97df7f1ccec0e6daa3a4fa2b7223d869d68 /source/include/reg_objects.h
parent1e9a8854b1f3bd640096923dc79991654da7e845 (diff)
downloadsamba-28c7293ee9e68b913faf8d74d63f73e09087169b.tar.gz
samba-28c7293ee9e68b913faf8d74d63f73e09087169b.tar.xz
samba-28c7293ee9e68b913faf8d74d63f73e09087169b.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)
Diffstat (limited to 'source/include/reg_objects.h')
-rw-r--r--source/include/reg_objects.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/source/include/reg_objects.h b/source/include/reg_objects.h
index 753425a7f96..f6716eba4f3 100644
--- a/source/include/reg_objects.h
+++ b/source/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 */