diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-12-27 21:11:09 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:47:51 -0500 |
commit | 7285e102f063122ca8ef1222cc6e9a5cde176b41 (patch) | |
tree | 2551036f62d46558a1e9acd26a20f2c0b7241dce /source4/lib/registry | |
parent | 10c183d9ae941f0ef143b2d50aebfcaf550c72b3 (diff) | |
download | samba-7285e102f063122ca8ef1222cc6e9a5cde176b41.tar.gz samba-7285e102f063122ca8ef1222cc6e9a5cde176b41.tar.bz2 samba-7285e102f063122ca8ef1222cc6e9a5cde176b41.zip |
r12523: Convert the registry subsystem to use a seperate prototype header
(note that this doesn't use the distinction between private
and public prototypes yet)
(This used to be commit 60e11f575821c1762b25ad66441b6e69ad1167ef)
Diffstat (limited to 'source4/lib/registry')
-rw-r--r-- | source4/lib/registry/config.mk | 1 | ||||
-rw-r--r-- | source4/lib/registry/registry.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/source4/lib/registry/config.mk b/source4/lib/registry/config.mk index 9d949a5c1d..3f63c5be98 100644 --- a/source4/lib/registry/config.mk +++ b/source4/lib/registry/config.mk @@ -90,6 +90,7 @@ OBJ_FILES = \ patchfile.o REQUIRED_SUBSYSTEMS = \ LIBBASIC +PRIVATE_PROTO_HEADER = registry_proto.h PUBLIC_HEADERS = registry.h # End MODULE registry_ldb ################################################ diff --git a/source4/lib/registry/registry.h b/source4/lib/registry/registry.h index ebfb2caf5c..7f57a9244d 100644 --- a/source4/lib/registry/registry.h +++ b/source4/lib/registry/registry.h @@ -161,4 +161,6 @@ struct reg_diff struct reg_diff_key *keys; }; +#include "registry_proto.h" + #endif /* _REGISTRY_H */ |