summaryrefslogtreecommitdiff
path: root/source3/include/reg_objects.h
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-03-23 23:05:30 +0100
committerMichael Adam <obnox@samba.org>2009-04-27 11:21:04 +0200
commitc9b1734419e795b1f57882de37758e7f1ee25b94 (patch)
treec40b1d0c2f623ce453416e2a6cf6630bf547016e /source3/include/reg_objects.h
parentcec84287473fffa1aee833163bad9f0d337ffb49 (diff)
downloadsamba-c9b1734419e795b1f57882de37758e7f1ee25b94.tar.gz
samba-c9b1734419e795b1f57882de37758e7f1ee25b94.tar.bz2
samba-c9b1734419e795b1f57882de37758e7f1ee25b94.zip
s3:registry replace typedef REGISTRY_HOOK by struct registry_hook.
Michael
Diffstat (limited to 'source3/include/reg_objects.h')
-rw-r--r--source3/include/reg_objects.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/reg_objects.h b/source3/include/reg_objects.h
index a3f9c9c591..5a4f516402 100644
--- a/source3/include/reg_objects.h
+++ b/source3/include/reg_objects.h
@@ -145,10 +145,10 @@ typedef struct {
bool (*values_need_update)(struct regval_ctr *values);
} REGISTRY_OPS;
-typedef struct {
+struct registry_hook {
const char *keyname; /* full path to name of key */
REGISTRY_OPS *ops; /* registry function hooks */
-} REGISTRY_HOOK;
+};
/* structure to store the registry handles */