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/com | |
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/com')
-rw-r--r-- | source4/lib/com/classes/simple.c | 2 | ||||
-rw-r--r-- | source4/lib/com/pycom.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/source4/lib/com/classes/simple.c b/source4/lib/com/classes/simple.c index 295f113207..367ce9d631 100644 --- a/source4/lib/com/classes/simple.c +++ b/source4/lib/com/classes/simple.c @@ -22,6 +22,8 @@ #include "lib/com/com.h" #include "librpc/gen_ndr/com_dcom.h" +NTSTATUS com_simple_init(void); + static struct IClassFactory_vtable simple_classobject_vtable; static struct IStream_vtable simple_IStream_vtable; diff --git a/source4/lib/com/pycom.c b/source4/lib/com/pycom.c index 3323ca645e..b445812181 100644 --- a/source4/lib/com/pycom.c +++ b/source4/lib/com/pycom.c @@ -23,6 +23,8 @@ #include "librpc/ndr/libndr.h" #include "libcli/util/pyerrors.h" +void initcom(void); + static struct com_context *py_com_ctx = NULL; /* FIXME: evil global */ static PyObject *py_get_class_object(PyObject *self, PyObject *args) |