Moved function prototypes to py_common_proto.h
authorTim Potter <tpot@samba.org>
Sun, 14 Apr 2002 09:03:05 +0000 (09:03 +0000)
committerTim Potter <tpot@samba.org>
Sun, 14 Apr 2002 09:03:05 +0000 (09:03 +0000)
source/python/py_common.h

index 45ad5c422dab5bcf4623fdb480f90c20d13432df..6661d87fe0bba941c1f1fc3c56d43e116efbf01a 100644 (file)
 #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 */