From d07cc9d8a1b34429f3c96abde7449ee0b7487ac3 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 20 Mar 2002 03:29:03 +0000 Subject: Initial version. (This used to be commit d35770d06f7bc396cf32337a4e1104b5fe8a3ca8) --- source3/python/py_winbind.c | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 source3/python/py_winbind.c (limited to 'source3/python/py_winbind.c') diff --git a/source3/python/py_winbind.c b/source3/python/py_winbind.c new file mode 100644 index 0000000000..eed9b235e0 --- /dev/null +++ b/source3/python/py_winbind.c @@ -0,0 +1,34 @@ +#include "includes.h" +#include "Python.h" +#include "python/py_common.h" + +/* + * Exceptions raised by this module + */ + +PyObject *winbind_error; /* A winbind call returned WINBINDD_ERROR */ + +/* + * Method dispatch table + */ + +static PyMethodDef winbind_methods[] = { + { NULL } +}; + +/* + * Module initialisation + */ + +void initwinbind(void) +{ + PyObject *module, *dict; + + /* Initialise module */ + + module = Py_InitModule("winbind", winbind_methods); + dict = PyModule_GetDict(module); + + winbind_error = PyErr_NewException("winbind.error", NULL, NULL); + PyDict_SetItemString(dict, "error", winbind_error); +} -- cgit