This commit was generated by cvs2svn to compensate for changes in r30,
[kai/samba-autobuild/.git] / source4 / python / py_samr_conv.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/py_samr.h"
22 #include "python/py_conv.h"
23
24 /*
25  * Convert between acct_info and Python 
26  */
27
28 BOOL py_from_acct_info(PyObject **array, struct acct_info *info, int num_accts)
29 {
30         int i;
31
32         *array = PyList_New(num_accts);
33
34         for (i = 0; i < num_accts; i++) {
35                 PyObject *obj;  
36
37                 obj = PyDict_New();
38                 
39                 PyDict_SetItemString(
40                         obj, "name", PyString_FromString(info[i].acct_name));
41
42                 PyDict_SetItemString(
43                         obj, "description", 
44                         PyString_FromString(info[i].acct_desc));
45
46                 PyDict_SetItemString(obj, "rid", PyInt_FromLong(info[i].rid));
47
48                 PyList_SetItem(*array, i, obj);
49         }
50
51         return True;
52 }
53
54 BOOL py_to_acct_info(PRINTER_INFO_3 *info, PyObject *dict,
55                      TALLOC_CTX *mem_ctx)
56 {
57         return False;
58 }