summaryrefslogtreecommitdiff
path: root/source4/lib/registry
diff options
context:
space:
mode:
authorArnaud Faucher <arnaud.faucher@gmail.com>2010-11-22 00:07:21 +0100
committerJelmer Vernooij <jelmer@samba.org>2010-11-22 00:52:56 +0100
commit2ac5cedb719d220db412d0bdc69e34bad9ab26f1 (patch)
tree0544a791f72b2416b9bc74d62671d1547b1b2458 /source4/lib/registry
parent6534358a1ae0e3540f84ebc531519fe5c5711ad3 (diff)
downloadsamba-2ac5cedb719d220db412d0bdc69e34bad9ab26f1.tar.gz
samba-2ac5cedb719d220db412d0bdc69e34bad9ab26f1.tar.bz2
samba-2ac5cedb719d220db412d0bdc69e34bad9ab26f1.zip
Avoid the use of PyAPI_DATA, which is for internal Python API's.
Signed-off-by: Jelmer Vernooij <jelmer@samba.org> Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Mon Nov 22 00:52:56 CET 2010 on sn-devel-104
Diffstat (limited to 'source4/lib/registry')
-rw-r--r--source4/lib/registry/pyregistry.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/registry/pyregistry.c b/source4/lib/registry/pyregistry.c
index 9952ed3494..8b75bbb60d 100644
--- a/source4/lib/registry/pyregistry.c
+++ b/source4/lib/registry/pyregistry.c
@@ -27,9 +27,9 @@
#include "auth/credentials/pycredentials.h"
#include "param/pyparam.h"
-PyAPI_DATA(PyTypeObject) PyRegistryKey;
-PyAPI_DATA(PyTypeObject) PyRegistry;
-PyAPI_DATA(PyTypeObject) PyHiveKey;
+extern PyTypeObject PyRegistryKey;
+extern PyTypeObject PyRegistry;
+extern PyTypeObject PyHiveKey;
/*#define PyRegistryKey_AsRegistryKey(obj) py_talloc_get_type(obj, struct registry_key)*/
#define PyRegistry_AsRegistryContext(obj) ((struct registry_context *)py_talloc_get_ptr(obj))