diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-12-22 21:03:09 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-12-22 21:03:09 +0100 |
commit | c023828962d7050668c38129170121cc50cd300f (patch) | |
tree | 02e9eda98a5418cc4555c5b24ca8a1612a706c18 /source4/param | |
parent | b682b0feb0af40656cd1b71a859cb1f23edcbcf5 (diff) | |
download | samba-c023828962d7050668c38129170121cc50cd300f.tar.gz samba-c023828962d7050668c38129170121cc50cd300f.tar.bz2 samba-c023828962d7050668c38129170121cc50cd300f.zip |
Fix missing symbols issues when building with shared libraries.
Diffstat (limited to 'source4/param')
-rw-r--r-- | source4/param/pyparam.c | 2 | ||||
-rw-r--r-- | source4/param/pyparam.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/param/pyparam.c b/source4/param/pyparam.c index 0cf651dd7c..acadcc08b0 100644 --- a/source4/param/pyparam.c +++ b/source4/param/pyparam.c @@ -310,7 +310,7 @@ PyTypeObject PyLoadparmService = { .tp_flags = Py_TPFLAGS_DEFAULT, }; -struct loadparm_context *lp_from_py_object(PyObject *py_obj) +_PUBLIC_ struct loadparm_context *lp_from_py_object(PyObject *py_obj) { struct loadparm_context *lp_ctx; if (PyString_Check(py_obj)) { diff --git a/source4/param/pyparam.h b/source4/param/pyparam.h index 4d7e32d908..1cda8f1dba 100644 --- a/source4/param/pyparam.h +++ b/source4/param/pyparam.h @@ -20,6 +20,6 @@ #ifndef _PYPARAM_H_ #define _PYPARAM_H_ -struct loadparm_context *lp_from_py_object(PyObject *py_obj); +_PUBLIC_ struct loadparm_context *lp_from_py_object(PyObject *py_obj); #endif /* _PYPARAM_H_ */ |