1 #ifndef Py_CGENSUPPORT_H
2 #define Py_CGENSUPPORT_H
8 /* Definitions used by cgen output */
10 /* XXX This file is obsolete. It is *only* used by glmodule.c. */
14 #define mknewlongobject(x) PyInt_FromLong(x)
15 #define mknewshortobject(x) PyInt_FromLong((long)x)
16 #define mknewfloatobject(x) PyFloat_FromDouble(x)
17 #define mknewcharobject(ch) Py_BuildValue("c", ch)
19 #define getichararg PyArg_GetChar
20 #define getidoublearray PyArg_GetDoubleArray
21 #define getifloatarg PyArg_GetFloat
22 #define getifloatarray PyArg_GetFloatArray
23 #define getilongarg PyArg_GetLong
24 #define getilongarray PyArg_GetLongArray
25 #define getilongarraysize PyArg_GetLongArraySize
26 #define getiobjectarg PyArg_GetObject
27 #define getishortarg PyArg_GetShort
28 #define getishortarray PyArg_GetShortArray
29 #define getishortarraysize PyArg_GetShortArraySize
30 #define getistringarg PyArg_GetString
32 extern int PyArg_GetObject(PyObject
*args
, int nargs
,
33 int i
, PyObject
**p_a
);
34 extern int PyArg_GetLong(PyObject
*args
, int nargs
,
36 extern int PyArg_GetShort(PyObject
*args
, int nargs
,
38 extern int PyArg_GetFloat(PyObject
*args
, int nargs
,
40 extern int PyArg_GetString(PyObject
*args
, int nargs
,
42 extern int PyArg_GetChar(PyObject
*args
, int nargs
,
44 extern int PyArg_GetLongArray(PyObject
*args
, int nargs
,
45 int i
, int n
, long *p_a
);
46 extern int PyArg_GetShortArray(PyObject
*args
, int nargs
,
47 int i
, int n
, short *p_a
);
48 extern int PyArg_GetDoubleArray(PyObject
*args
, int nargs
,
49 int i
, int n
, double *p_a
);
50 extern int PyArg_GetFloatArray(PyObject
*args
, int nargs
,
51 int i
, int n
, float *p_a
);
52 extern int PyArg_GetLongArraySize(PyObject
*args
, int nargs
,
54 extern int PyArg_GetShortArraySize(PyObject
*args
, int nargs
,
56 extern int PyArg_GetDoubleArraySize(PyObject
*args
, int nargs
,
58 extern int PyArg_GetFloatArraySize(PyObject
*args
, int nargs
,
64 #endif /* !Py_CGENSUPPORT_H */