From: Michael Adam Date: Mon, 24 May 2010 22:31:01 +0000 (+0200) Subject: s3:registry: move definition of registry_hook to reg_init_full.c - it's only user X-Git-Tag: release-3-6-0pre1~1693 X-Git-Url: http://git.samba.org/?p=amitay%2Fsamba.git;a=commitdiff_plain;h=97846edfa59b95572d176981bb4bab6a5c06b61c s3:registry: move definition of registry_hook to reg_init_full.c - it's only user --- diff --git a/source3/include/reg_objects.h b/source3/include/reg_objects.h index 00ba68bf5ca..770eed64c2d 100644 --- a/source3/include/reg_objects.h +++ b/source3/include/reg_objects.h @@ -145,11 +145,6 @@ struct registry_ops { bool (*values_need_update)(struct regval_ctr *values); }; -struct registry_hook { - const char *keyname; /* full path to name of key */ - struct registry_ops *ops; /* registry function hooks */ -}; - /* structure to store the registry handles */ diff --git a/source3/registry/reg_init_full.c b/source3/registry/reg_init_full.c index 265fed30ca5..8c012e89eeb 100644 --- a/source3/registry/reg_init_full.c +++ b/source3/registry/reg_init_full.c @@ -45,6 +45,11 @@ extern struct registry_ops regdb_ops; /* these are the default */ /* array of registry_hook's which are read into a tree for easy access */ /* #define REG_TDB_ONLY 1 */ +struct registry_hook { + const char *keyname; /* full path to name of key */ + struct registry_ops *ops; /* registry function hooks */ +}; + struct registry_hook reg_hooks[] = { #ifndef REG_TDB_ONLY { KEY_PRINTING, &printing_ops },