r25598: Add missing become_root/unbecome_root around calls of add_aliases.
[samba.git] / source / python / py_winreg.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 3 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, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "python/py_winreg.h"
21
22 static struct const_vals {
23         char *name;
24         uint32 value;
25 } module_const_vals[] = {
26         
27         /* Registry value types */
28
29         { "REG_NONE", REG_NONE },
30         { "REG_SZ", REG_SZ },
31         { "REG_EXPAND_SZ", REG_EXPAND_SZ },
32         { "REG_BINARY", REG_BINARY },
33         { "REG_DWORD", REG_DWORD },
34         { "REG_DWORD_LE", REG_DWORD_LE },
35         { "REG_DWORD_BE", REG_DWORD_BE },
36         { "REG_LINK", REG_LINK },
37         { "REG_MULTI_SZ", REG_MULTI_SZ },
38         { "REG_RESOURCE_LIST", REG_RESOURCE_LIST },
39         { "REG_FULL_RESOURCE_DESCRIPTOR", REG_FULL_RESOURCE_DESCRIPTOR },
40         { "REG_RESOURCE_REQUIREMENTS_LIST", REG_RESOURCE_REQUIREMENTS_LIST },
41
42         { NULL },
43 };
44
45 static void const_init(PyObject *dict)
46 {
47         struct const_vals *tmp;
48         PyObject *obj;
49
50         for (tmp = module_const_vals; tmp->name; tmp++) {
51                 obj = PyInt_FromLong(tmp->value);
52                 PyDict_SetItemString(dict, tmp->name, obj);
53                 Py_DECREF(obj);
54         }
55 }
56
57 /*
58  * Module initialisation 
59  */
60
61 static PyMethodDef winreg_methods[] = {
62         { NULL }
63 };
64
65 void initwinreg(void)
66 {
67         PyObject *module, *dict;
68
69         /* Initialise module */
70
71         module = Py_InitModule("winreg", winreg_methods);
72         dict = PyModule_GetDict(module);
73
74         /* Initialise constants */
75
76         const_init(dict);
77
78         /* Do samba initialisation */
79
80         py_samba_init();
81 }