diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2011-03-19 00:45:36 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2011-03-19 03:20:05 +0100 |
commit | bd0eced7d586a1648c9c429b5ac6aeec8256e4c6 (patch) | |
tree | 19c9f106948f4b7e6899dd5da07adfa6af9c9145 /source4/lib/registry | |
parent | fc720be5a2a178ea9b85cac9a9f8649158e96121 (diff) | |
download | samba-bd0eced7d586a1648c9c429b5ac6aeec8256e4c6.tar.gz samba-bd0eced7d586a1648c9c429b5ac6aeec8256e4c6.tar.bz2 samba-bd0eced7d586a1648c9c429b5ac6aeec8256e4c6.zip |
source4/lib: Fix prototypes for all functions.
Diffstat (limited to 'source4/lib/registry')
-rw-r--r-- | source4/lib/registry/pyregistry.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/lib/registry/pyregistry.c b/source4/lib/registry/pyregistry.c index b93258a856..5719bbd115 100644 --- a/source4/lib/registry/pyregistry.c +++ b/source4/lib/registry/pyregistry.c @@ -31,6 +31,8 @@ extern PyTypeObject PyRegistryKey; extern PyTypeObject PyRegistry; extern PyTypeObject PyHiveKey; +void initregistry(void); + /*#define PyRegistryKey_AsRegistryKey(obj) py_talloc_get_type(obj, struct registry_key)*/ #define PyRegistry_AsRegistryContext(obj) ((struct registry_context *)py_talloc_get_ptr(obj)) #define PyHiveKey_AsHiveKey(obj) ((struct hive_key*)py_talloc_get_ptr(obj)) |