summaryrefslogtreecommitdiff
path: root/source3/python/py_common.h
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-04-14 09:03:05 +0000
committerTim Potter <tpot@samba.org>2002-04-14 09:03:05 +0000
commitcc8dce0debe4dc81bdb94fc4593eda22e5b8200a (patch)
tree235f38d7787e75dcae83e2be513c0cf31ac80ec3 /source3/python/py_common.h
parentf143cb6144a564f0248770cd552e440dbcddb056 (diff)
downloadsamba-cc8dce0debe4dc81bdb94fc4593eda22e5b8200a.tar.gz
samba-cc8dce0debe4dc81bdb94fc4593eda22e5b8200a.tar.bz2
samba-cc8dce0debe4dc81bdb94fc4593eda22e5b8200a.zip
Moved function prototypes to py_common_proto.h
(This used to be commit f006bcf8e50e44b955678356039a6d6a7e16ab20)
Diffstat (limited to 'source3/python/py_common.h')
-rw-r--r--source3/python/py_common.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/source3/python/py_common.h b/source3/python/py_common.h
index 45ad5c422d..6661d87fe0 100644
--- a/source3/python/py_common.h
+++ b/source3/python/py_common.h
@@ -21,16 +21,6 @@
#ifndef _PY_COMMON_H
#define _PY_COMMON_H
-/* Function prototypes */
-
-void py_samba_init(void);
-PyObject *py_werror_tuple(WERROR werror);
-PyObject *py_ntstatus_tuple(NTSTATUS ntstatus);
-
-PyObject *py_setup_logging(PyObject *self, PyObject *args, PyObject *kw);
-PyObject *get_debuglevel(PyObject *self, PyObject *args);
-PyObject *set_debuglevel(PyObject *self, PyObject *args);
-
/* Return a cli_state struct opened on the SPOOLSS pipe. If credentials
are passed use them. */
@@ -38,8 +28,6 @@ typedef struct cli_state *(cli_pipe_fn)(
struct cli_state *cli, char *system_name,
struct ntuser_creds *creds);
-struct cli_state *open_pipe_creds(char *system_name, PyObject *creds,
- cli_pipe_fn *connect_fn,
- struct cli_state *cli);
+#include "python/py_common_proto.h"
#endif /* _PY_COMMON_H */