2 Python wrappers for DCERPC/SMB client routines.
4 Copyright (C) Tim Potter, 2002
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.
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.
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.
21 #include "python/py_samr.h"
22 #include "python/py_conv.h"
25 * Convert between SAM_USER_INFO_16 and Python
28 struct pyconv py_SAM_USER_INFO_16
[] = {
29 { "acb_info", PY_UINT32
, offsetof(SAM_USER_INFO_16
, acb_info
) },
33 BOOL
py_from_SAM_USER_INFO_16(PyObject
**dict
, SAM_USER_INFO_16
*info
)
35 *dict
= from_struct(info
, py_SAM_USER_INFO_16
);
36 PyDict_SetItemString(*dict
, "level", PyInt_FromLong(16));
40 BOOL
py_to_SAM_USER_INFO_16(SAM_USER_INFO_16
*info
, PyObject
*dict
)
42 PyObject
*obj
, *dict_copy
= PyDict_Copy(dict
);
45 if (!(obj
= PyDict_GetItemString(dict_copy
, "level")) ||
49 PyDict_DelItemString(dict_copy
, "level");
51 if (!to_struct(info
, dict_copy
, py_SAM_USER_INFO_16
))
62 * Convert between SAM_USER_INFO_21 and Python
65 struct pyconv py_SAM_USER_INFO_21
[] = {
69 BOOL
py_from_SAM_USER_INFO_21(PyObject
**dict
, SAM_USER_INFO_21
*info
)
71 *dict
= from_struct(info
, py_SAM_USER_INFO_21
);
72 PyDict_SetItemString(*dict
, "level", PyInt_FromLong(21));
76 BOOL
py_to_SAM_USER_INFO_21(SAM_USER_INFO_21
*info
, PyObject
*dict
)
78 PyObject
*obj
, *dict_copy
= PyDict_Copy(dict
);
81 if (!(obj
= PyDict_GetItemString(dict_copy
, "level")) ||
85 PyDict_DelItemString(dict_copy
, "level");
87 if (!to_struct(info
, dict_copy
, py_SAM_USER_INFO_21
))
98 * Convert between acct_info and Python
101 BOOL
py_from_acct_info(PyObject
**array
, struct acct_info
*info
, int num_accts
)
105 *array
= PyList_New(num_accts
);
107 for (i
= 0; i
< num_accts
; i
++) {
112 PyDict_SetItemString(
113 obj
, "name", PyString_FromString(info
[i
].acct_name
));
115 PyDict_SetItemString(
117 PyString_FromString(info
[i
].acct_desc
));
119 PyDict_SetItemString(obj
, "rid", PyInt_FromLong(info
[i
].rid
));
121 PyList_SetItem(*array
, i
, obj
);
127 BOOL
py_to_acct_info(PRINTER_INFO_3
*info
, PyObject
*dict
,