first public release of samba4 code
[kai/samba.git] / source4 / python / py_samba.c
1 /* 
2    Python wrappers for DCERPC/SMB client routines.
3
4    Copyright (C) Tim Potter, 2002
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #include "Python.h"
22 #include "python/py_common.h"
23
24 /*
25  * Module initialisation 
26  */
27
28 static PyObject *lsa_open_policy(PyObject *self, PyObject *args, 
29                                 PyObject *kw) 
30 {
31         return NULL;
32 }
33
34 static PyMethodDef samba_methods[] = {
35         { NULL }
36 };
37
38 static PyMethodDef cheepy_methods[] = {
39         { "open_policy", (PyCFunction)lsa_open_policy, METH_VARARGS|METH_KEYWORDS,
40           "Foo"},
41         { NULL }
42 };
43
44 void initsamba(void)
45 {
46         PyObject *module, *new_module, *dict;
47
48         /* Initialise module */
49
50         module = Py_InitModule("samba", samba_methods);
51         dict = PyModule_GetDict(module);
52
53         /* Do samba initialisation */
54
55         py_samba_init();
56 }