python: Move some convenience macros to a separate header rather than putting them...
[ira/wip.git] / source / scripting / python / pyrpc.h
1 /* 
2    Unix SMB/CIFS implementation.
3    Samba utility functions
4    Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
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 #define PY_CHECK_TYPE(type, var, fail) \
21         if (!type ## _Check(var)) {\
22                 PyErr_Format(PyExc_TypeError, "Expected type %s", type ## _Type.tp_name); \
23                 fail; \
24         }
25
26 #define dom_sid2_Type dom_sid_Type
27 #define dom_sid28_Type dom_sid_Type
28 #define dom_sid2_Check dom_sid_Check
29 #define dom_sid28_Check dom_sid28_Check