static PyObject *
-SetConfig(self, args, func)
- alcobject *self;
- PyObject *args;
- int (*func)(ALconfig, int);
+SetConfig(alcobject *self, PyObject *args, int (*func)(ALconfig, int))
{
int par;
}
static PyObject *
-GetConfig(self, args, func)
- alcobject *self;
- PyObject *args;
- int (*func)(ALconfig);
+GetConfig(alcobject *self, PyObject *args, int (*func)(ALconfig))
{
int par;
;
static PyObject *
-alc_SetWidth(self, args)
- alcobject *self;
- PyObject *args;
+alc_SetWidth(alcobject *self, PyObject *args)
{
return SetConfig(self, args, alSetWidth);
}
;
static PyObject *
-alc_GetWidth(self, args)
- alcobject *self;
- PyObject *args;
+alc_GetWidth(alcobject *self, PyObject *args)
{
return GetConfig(self, args, alGetWidth);
}
;
static PyObject *
-alc_SetSampFmt(self, args)
- alcobject *self;
- PyObject *args;
+alc_SetSampFmt(alcobject *self, PyObject *args)
{
return SetConfig(self, args, alSetSampFmt);
}
;
static PyObject *
-alc_GetSampFmt(self, args)
- alcobject *self;
- PyObject *args;
+alc_GetSampFmt(alcobject *self, PyObject *args)
{
return GetConfig(self, args, alGetSampFmt);
}
;
static PyObject *
-alc_SetChannels(self, args)
- alcobject *self;
- PyObject *args;
+alc_SetChannels(alcobject *self, PyObject *args)
{
return SetConfig(self, args, alSetChannels);
}
;
static PyObject *
-alc_GetChannels(self, args)
- alcobject *self;
- PyObject *args;
+alc_GetChannels(alcobject *self, PyObject *args)
{
return GetConfig(self, args, alGetChannels);
}
;
static PyObject *
-alc_SetFloatMax(self, args)
- alcobject *self;
- PyObject *args;
+alc_SetFloatMax(alcobject *self, PyObject *args)
{
double maximum_value;
;
static PyObject *
-alc_GetFloatMax(self, args)
- alcobject *self;
- PyObject *args;
+alc_GetFloatMax(alcobject *self, PyObject *args)
{
double maximum_value;
;
static PyObject *
-alc_SetDevice(self, args)
- alcobject *self;
- PyObject *args;
+alc_SetDevice(alcobject *self, PyObject *args)
{
return SetConfig(self, args, alSetDevice);
}
;
static PyObject *
-alc_GetDevice(self, args)
- alcobject *self;
- PyObject *args;
+alc_GetDevice(alcobject *self, PyObject *args)
{
return GetConfig(self, args, alGetDevice);
}
;
static PyObject *
-alc_SetQueueSize(self, args)
- alcobject *self;
- PyObject *args;
+alc_SetQueueSize(alcobject *self, PyObject *args)
{
return SetConfig(self, args, alSetQueueSize);
}
;
static PyObject *
-alc_GetQueueSize(self, args)
- alcobject *self;
- PyObject *args;
+alc_GetQueueSize(alcobject *self, PyObject *args)
{
return GetConfig(self, args, alGetQueueSize);
}
#endif /* AL_NO_ELEM */
static PyObject *
-setconfig(self, args, func)
- alcobject *self;
- PyObject *args;
- int (*func)(ALconfig, long);
+setconfig(alcobject *self, PyObject *args, int (*func)(ALconfig, long))
{
long par;
}
static PyObject *
-getconfig(self, args, func)
- alcobject *self;
- PyObject *args;
- long (*func)(ALconfig);
+getconfig(alcobject *self, PyObject *args, long (*func)(ALconfig))
{
long par;
}
static PyObject *
-alc_setqueuesize (self, args)
- alcobject *self;
- PyObject *args;
+alc_setqueuesize (alcobject *self, PyObject *args)
{
return setconfig(self, args, ALsetqueuesize);
}
static PyObject *
-alc_getqueuesize (self, args)
- alcobject *self;
- PyObject *args;
+alc_getqueuesize (alcobject *self, PyObject *args)
{
return getconfig(self, args, ALgetqueuesize);
}
static PyObject *
-alc_setwidth (self, args)
- alcobject *self;
- PyObject *args;
+alc_setwidth (alcobject *self, PyObject *args)
{
return setconfig(self, args, ALsetwidth);
}
static PyObject *
-alc_getwidth (self, args)
- alcobject *self;
- PyObject *args;
+alc_getwidth (alcobject *self, PyObject *args)
{
return getconfig(self, args, ALgetwidth);
}
static PyObject *
-alc_getchannels (self, args)
- alcobject *self;
- PyObject *args;
+alc_getchannels (alcobject *self, PyObject *args)
{
return getconfig(self, args, ALgetchannels);
}
static PyObject *
-alc_setchannels (self, args)
- alcobject *self;
- PyObject *args;
+alc_setchannels (alcobject *self, PyObject *args)
{
return setconfig(self, args, ALsetchannels);
}
#ifdef AL_405
static PyObject *
-alc_getsampfmt (self, args)
- alcobject *self;
- PyObject *args;
+alc_getsampfmt (alcobject *self, PyObject *args)
{
return getconfig(self, args, ALgetsampfmt);
}
static PyObject *
-alc_setsampfmt (self, args)
- alcobject *self;
- PyObject *args;
+alc_setsampfmt (alcobject *self, PyObject *args)
{
return setconfig(self, args, ALsetsampfmt);
}
static PyObject *
-alc_getfloatmax(self, args)
- alcobject *self;
- PyObject *args;
+alc_getfloatmax(alcobject *self, PyObject *args)
{
double arg;
}
static PyObject *
-alc_setfloatmax(self, args)
- alcobject *self;
- PyObject *args;
+alc_setfloatmax(alcobject *self, PyObject *args)
{
double arg;
static void
-alc_dealloc(self)
- alcobject *self;
+alc_dealloc(alcobject *self)
{
/* XXXX Add your own cleanup code here */
#ifdef AL_NO_ELEM /* IRIX 6 */
}
static PyObject *
-alc_getattr(self, name)
- alcobject *self;
- char *name;
+alc_getattr(alcobject *self, char *name)
{
/* XXXX Add your own getattr code here */
return Py_FindMethod(alc_methods, (PyObject *)self, name);
;
static PyObject *
-alp_SetConfig(self, args)
- alpobject *self;
- PyObject *args;
+alp_SetConfig(alpobject *self, PyObject *args)
{
alcobject *config;
if (!PyArg_ParseTuple(args, "O!:SetConfig", &Alctype, &config))
;
static PyObject *
-alp_GetConfig(self, args)
- alpobject *self;
- PyObject *args;
+alp_GetConfig(alpobject *self, PyObject *args)
{
ALconfig config;
if (!PyArg_ParseTuple(args, ":GetConfig"))
;
static PyObject *
-alp_GetResource(self, args)
- alpobject *self;
- PyObject *args;
+alp_GetResource(alpobject *self, PyObject *args)
{
int resource;
;
static PyObject *
-alp_GetFD(self, args)
- alpobject *self;
- PyObject *args;
+alp_GetFD(alpobject *self, PyObject *args)
{
int fd;
;
static PyObject *
-alp_GetFilled(self, args)
- alpobject *self;
- PyObject *args;
+alp_GetFilled(alpobject *self, PyObject *args)
{
int filled;
;
static PyObject *
-alp_GetFillable(self, args)
- alpobject *self;
- PyObject *args;
+alp_GetFillable(alpobject *self, PyObject *args)
{
int fillable;
;
static PyObject *
-alp_ReadFrames(self, args)
- alpobject *self;
- PyObject *args;
+alp_ReadFrames(alpobject *self, PyObject *args)
{
void *samples;
int framecount;
;
static PyObject *
-alp_DiscardFrames(self, args)
- alpobject *self;
- PyObject *args;
+alp_DiscardFrames(alpobject *self, PyObject *args)
{
int framecount;
;
static PyObject *
-alp_ZeroFrames(self, args)
- alpobject *self;
- PyObject *args;
+alp_ZeroFrames(alpobject *self, PyObject *args)
{
int framecount;
;
static PyObject *
-alp_SetFillPoint(self, args)
- alpobject *self;
- PyObject *args;
+alp_SetFillPoint(alpobject *self, PyObject *args)
{
int fillpoint;
;
static PyObject *
-alp_GetFillPoint(self, args)
- alpobject *self;
- PyObject *args;
+alp_GetFillPoint(alpobject *self, PyObject *args)
{
int fillpoint;
;
static PyObject *
-alp_GetFrameNumber(self, args)
- alpobject *self;
- PyObject *args;
+alp_GetFrameNumber(alpobject *self, PyObject *args)
{
stamp_t fnum;
;
static PyObject *
-alp_GetFrameTime(self, args)
- alpobject *self;
- PyObject *args;
+alp_GetFrameTime(alpobject *self, PyObject *args)
{
stamp_t fnum, time;
PyObject *ret, *v0, *v1;
;
static PyObject *
-alp_WriteFrames(self, args)
- alpobject *self;
- PyObject *args;
+alp_WriteFrames(alpobject *self, PyObject *args)
{
char *samples;
int length;
;
static PyObject *
-alp_ClosePort(self, args)
- alpobject *self;
- PyObject *args;
+alp_ClosePort(alpobject *self, PyObject *args)
{
if (!PyArg_ParseTuple(args, ":ClosePort"))
return NULL;
#ifdef OLD_INTERFACE
static PyObject *
-alp_closeport(self, args)
- alpobject *self;
- PyObject *args;
+alp_closeport(alpobject *self, PyObject *args)
{
if (!PyArg_ParseTuple(args, ":ClosePort"))
return NULL;
}
static PyObject *
-alp_getfd(self, args)
- alpobject *self;
- PyObject *args;
+alp_getfd(alpobject *self, PyObject *args)
{
int fd;
}
static PyObject *
-alp_getfilled(self, args)
- alpobject *self;
- PyObject *args;
+alp_getfilled(alpobject *self, PyObject *args)
{
long count;
}
static PyObject *
-alp_getfillable(self, args)
- alpobject *self;
- PyObject *args;
+alp_getfillable(alpobject *self, PyObject *args)
{
long count;
}
static PyObject *
-alp_readsamps(self, args)
- alpobject *self;
- PyObject *args;
+alp_readsamps(alpobject *self, PyObject *args)
{
long count;
PyObject *v;
}
static PyObject *
-alp_writesamps(self, args)
- alpobject *self;
- PyObject *args;
+alp_writesamps(alpobject *self, PyObject *args)
{
char *buf;
int size, width;
}
static PyObject *
-alp_getfillpoint(self, args)
- alpobject *self;
- PyObject *args;
+alp_getfillpoint(alpobject *self, PyObject *args)
{
long count;
}
static PyObject *
-alp_setfillpoint(self, args)
- alpobject *self;
- PyObject *args;
+alp_setfillpoint(alpobject *self, PyObject *args)
{
long count;
}
static PyObject *
-alp_setconfig(self, args)
- alpobject *self;
- PyObject *args;
+alp_setconfig(alpobject *self, PyObject *args)
{
alcobject *config;
}
static PyObject *
-alp_getconfig(self, args)
- alpobject *self;
- PyObject *args;
+alp_getconfig(alpobject *self, PyObject *args)
{
ALconfig config;
#ifdef AL_405
static PyObject *
-alp_getstatus(self, args)
- alpobject *self;
- PyObject *args;
+alp_getstatus(alpobject *self, PyObject *args)
{
PyObject *list, *v;
long *PVbuffer;
static void
-alp_dealloc(self)
- alpobject *self;
+alp_dealloc(alpobject *self)
{
/* XXXX Add your own cleanup code here */
if (self->port) {
}
static PyObject *
-alp_getattr(self, name)
- alpobject *self;
- char *name;
+alp_getattr(alpobject *self, char *name)
{
/* XXXX Add your own getattr code here */
if (self->port == NULL) {
;
static PyObject *
-al_NewConfig(self, args)
- PyObject *self; /* Not used */
- PyObject *args;
+al_NewConfig(PyObject *self, PyObject *args)
{
ALconfig config;
;
static PyObject *
-al_OpenPort(self, args)
- PyObject *self; /* Not used */
- PyObject *args;
+al_OpenPort(PyObject *self, PyObject *args)
{
ALport port;
char *name, *dir;
;
static PyObject *
-al_Connect(self, args)
- PyObject *self; /* Not used */
- PyObject *args;
+al_Connect(PyObject *self, PyObject *args)
{
int source, dest, nprops = 0, id, i;
ALpv *props = NULL;
;
static PyObject *
-al_Disconnect(self, args)
- PyObject *self; /* Not used */
- PyObject *args;
+al_Disconnect(PyObject *self, PyObject *args)
{
int res;
;
static PyObject *
-al_GetParams(self, args)
- PyObject *self; /* Not used */
- PyObject *args;
+al_GetParams(PyObject *self, PyObject *args)
{
int resource;
PyObject *pvslist, *item = NULL, *v = NULL;
;
static PyObject *
-al_SetParams(self, args)
- PyObject *self; /* Not used */
- PyObject *args;
+al_SetParams(PyObject *self, PyObject *args)
{
int resource;
PyObject *pvslist, *item;
;
static PyObject *
-al_QueryValues(self, args)
- PyObject *self; /* Not used */
- PyObject *args;
+al_QueryValues(PyObject *self, PyObject *args)
{
int resource, param;
ALvalue *return_set = NULL;
;
static PyObject *
-al_GetParamInfo(self, args)
- PyObject *self; /* Not used */
- PyObject *args;
+al_GetParamInfo(PyObject *self, PyObject *args)
{
int res, param;
ALparamInfo pinfo;
;
static PyObject *
-al_GetResourceByName(self, args)
- PyObject *self; /* Not used */
- PyObject *args;
+al_GetResourceByName(PyObject *self, PyObject *args)
{
int res, start_res, type;
char *name;
;
static PyObject *
-al_IsSubtype(self, args)
- PyObject *self; /* Not used */
- PyObject *args;
+al_IsSubtype(PyObject *self, PyObject *args)
{
int type, subtype;
;
static PyObject *
-al_SetErrorHandler(self, args)
- PyObject *self; /* Not used */
- PyObject *args;
+al_SetErrorHandler(PyObject *self, PyObject *args)
{
if (!PyArg_ParseTuple(args, ":SetErrorHandler"))
#ifdef OLD_INTERFACE
static PyObject *
-al_openport(self, args)
- PyObject *self, *args;
+al_openport(PyObject *self, PyObject *args)
{
char *name, *dir;
ALport port;
}
static PyObject *
-al_newconfig(self, args)
- PyObject *self, *args;
+al_newconfig(PyObject *self, PyObject *args)
{
ALconfig config;
}
static PyObject *
-al_queryparams(self, args)
- PyObject *self, *args;
+al_queryparams(PyObject *self, PyObject *args)
{
long device;
long length;
}
static PyObject *
-doParams(args, func, modified)
- PyObject *args;
- int (*func)(long, long *, long);
- int modified;
+doParams(PyObject *args, int (*func)(long, long *, long), int modified)
{
long device;
PyObject *list, *v;
}
static PyObject *
-al_getparams(self, args)
- PyObject *self, *args;
+al_getparams(PyObject *self, PyObject *args)
{
return doParams(args, ALgetparams, 1);
}
static PyObject *
-al_setparams(self, args)
- PyObject *self, *args;
+al_setparams(PyObject *self, PyObject *args)
{
return doParams(args, ALsetparams, 0);
}
static PyObject *
-al_getname(self, args)
- PyObject *self, *args;
+al_getname(PyObject *self, PyObject *args)
{
long device, descriptor;
char *name;
}
static PyObject *
-al_getdefault(self, args)
- PyObject *self, *args;
+al_getdefault(PyObject *self, PyObject *args)
{
long device, descriptor, value;
}
static PyObject *
-al_getminmax(self, args)
- PyObject *self, *args;
+al_getminmax(PyObject *self, PyObject *args)
{
long device, descriptor, min, max;
/* Add an object to the list of known objects */
static void
-knowgeneric(g)
- genericobject *g;
+knowgeneric(genericobject *g)
{
int i, n;
/* Create the list if it doesn't already exist */
/* Find an object in the list of known objects */
static genericobject *
-findgeneric(generic)
- FL_OBJECT *generic;
+findgeneric(FL_OBJECT *generic)
{
int i, n;
genericobject *g;
/* Remove an object from the list of known objects */
static void
-forgetgeneric(g)
- genericobject *g;
+forgetgeneric(genericobject *g)
{
int i, n;
remove all the objects that we know about from it. */
static void
-releaseobjects(form)
- FL_FORM *form;
+releaseobjects(FL_FORM *form)
{
int i, n;
genericobject *g;
/* Methods of generic objects */
static PyObject *
-generic_set_call_back(g, args)
- genericobject *g;
- PyObject *args;
+generic_set_call_back(genericobject *g, PyObject *args)
{
if (args == NULL) {
Py_XDECREF(g->ob_callback);
}
static PyObject *
-generic_call(g, args, func)
- genericobject *g;
- PyObject *args;
- void (*func)(FL_OBJECT *);
+generic_call(genericobject *g, PyObject *args, void (*func)(FL_OBJECT *))
{
if (!PyArg_NoArgs(args))
return NULL;
}
static PyObject *
-generic_delete_object(g, args)
- genericobject *g;
- PyObject *args;
+generic_delete_object(genericobject *g, PyObject *args)
{
PyObject *res;
res = generic_call(g, args, fl_delete_object);
}
static PyObject *
-generic_show_object(g, args)
- genericobject *g;
- PyObject *args;
+generic_show_object(genericobject *g, PyObject *args)
{
return generic_call(g, args, fl_show_object);
}
static PyObject *
-generic_hide_object(g, args)
- genericobject *g;
- PyObject *args;
+generic_hide_object(genericobject *g, PyObject *args)
{
return generic_call(g, args, fl_hide_object);
}
static PyObject *
-generic_redraw_object(g, args)
- genericobject *g;
- PyObject *args;
+generic_redraw_object(genericobject *g, PyObject *args)
{
return generic_call(g, args, fl_redraw_object);
}
using, we omit them unconditionally. */
static PyObject *
-generic_freeze_object(g, args)
- genericobject *g;
- PyObject *args;
+generic_freeze_object(genericobject *g, PyObject *args)
{
return generic_call(g, args, fl_freeze_object);
}
static PyObject *
-generic_unfreeze_object(g, args)
- genericobject *g;
- PyObject *args;
+generic_unfreeze_object(genericobject *g, PyObject *args)
{
return generic_call(g, args, fl_unfreeze_object);
}
#endif /* OBSOLETE_FORMS_CALLS */
static PyObject *
-generic_activate_object(g, args)
- genericobject *g;
- PyObject *args;
+generic_activate_object(genericobject *g, PyObject *args)
{
return generic_call(g, args, fl_activate_object);
}
static PyObject *
-generic_deactivate_object(g, args)
- genericobject *g;
- PyObject *args;
+generic_deactivate_object(genericobject *g, PyObject *args)
{
return generic_call(g, args, fl_deactivate_object);
}
static PyObject *
-generic_set_object_shortcut(g, args)
- genericobject *g;
- PyObject *args;
+generic_set_object_shortcut(genericobject *g, PyObject *args)
{
char *str;
if (!PyArg_Parse(args, "s", &str))
};
static void
-generic_dealloc(g)
- genericobject *g;
+generic_dealloc(genericobject *g)
{
fl_free_object(g->ob_generic);
Py_XDECREF(g->ob_callback);
#undef OFF
static PyObject *
-generic_getattr(g, name)
- genericobject *g;
- char *name;
+generic_getattr(genericobject *g, char *name)
{
PyObject *meth;
}
static int
-generic_setattr(g, name, v)
- genericobject *g;
- char *name;
- PyObject *v;
+generic_setattr(genericobject *g, char *name PyObject *v)
{
int ret;
}
static PyObject *
-generic_repr(g)
- genericobject *g;
+generic_repr(genericobject *g)
{
char buf[100];
sprintf(buf, "<FORMS_object at %p, objclass=%d>",
};
static PyObject *
-newgenericobject(generic, methods)
- FL_OBJECT *generic;
- PyMethodDef *methods;
+newgenericobject(FL_OBJECT *generic, PyMethodDef *methods)
{
genericobject *g;
g = PyObject_New(genericobject, &GenericObjecttype);
/* void func (object, float) */
static PyObject *
-call_forms_INf (func, obj, args)
- void (*func)(FL_OBJECT *, float);
- FL_OBJECT *obj;
- PyObject *args;
+call_forms_INf (void (*func)(FL_OBJECT *, float), FL_OBJECT *obj, PyObject *args)
{
float parameter;
/* void func (object, float) */
static PyObject *
-call_forms_INfINf (func, obj, args)
- void (*func)(FL_OBJECT *, float, float);
- FL_OBJECT *obj;
- PyObject *args;
+call_forms_INfINf (void (*func)(FL_OBJECT *, float, float), FL_OBJECT *obj, PyObject *args)
{
float par1, par2;
/* void func (object, int) */
static PyObject *
-call_forms_INi (func, obj, args)
- void (*func)(FL_OBJECT *, int);
- FL_OBJECT *obj;
- PyObject *args;
+call_forms_INi (void (*func)(FL_OBJECT *, int), FL_OBJECT *obj, PyObject *args)
{
int parameter;
/* void func (object, char) */
static PyObject *
-call_forms_INc (func, obj, args)
- void (*func)(FL_OBJECT *, int);
- FL_OBJECT *obj;
- PyObject *args;
+call_forms_INc (void (*func)(FL_OBJECT *, int), FL_OBJECT *obj, PyObject *args)
{
char *a;
/* void func (object, string) */
static PyObject *
-call_forms_INstr (func, obj, args)
- void (*func)(FL_OBJECT *, char *);
- FL_OBJECT *obj;
- PyObject *args;
+call_forms_INstr (void (*func)(FL_OBJECT *, char *), FL_OBJECT *obj, PyObject *args)
{
char *a;
/* void func (object, int, string) */
static PyObject *
-call_forms_INiINstr (func, obj, args)
- void (*func)(FL_OBJECT *, int, char *);
- FL_OBJECT *obj;
- PyObject *args;
+call_forms_INiINstr (void (*func)(FL_OBJECT *, int, char *), FL_OBJECT *obj, PyObject *args)
{
char *b;
int a;
#ifdef UNUSED
/* void func (object, int, int) */
static PyObject *
-call_forms_INiINi (func, obj, args)
- void (*func)(FL_OBJECT *, int, int);
- FL_OBJECT *obj;
- PyObject *args;
+call_forms_INiINi (void (*func)(FL_OBJECT *, int, int), FL_OBJECT *obj, PyObject *args)
{
int par1, par2;
/* int func (object) */
static PyObject *
-call_forms_Ri (func, obj, args)
- int (*func)(FL_OBJECT *);
- FL_OBJECT *obj;
- PyObject *args;
+call_forms_Ri (int (*func)(FL_OBJECT *), FL_OBJECT *obj, PyObject *args)
{
int retval;
/* char * func (object) */
static PyObject *
-call_forms_Rstr (func, obj, args)
- char * (*func)(FL_OBJECT *);
- FL_OBJECT *obj;
- PyObject *args;
+call_forms_Rstr (char * (*func)(FL_OBJECT *), FL_OBJECT *obj, PyObject *args)
{
char *str;
/* int func (object) */
static PyObject *
-call_forms_Rf (func, obj, args)
- float (*func)(FL_OBJECT *);
- FL_OBJECT *obj;
- PyObject *args;
+call_forms_Rf (float (*func)(FL_OBJECT *), FL_OBJECT *obj, PyObject *args)
{
float retval;
}
static PyObject *
-call_forms_OUTfOUTf (func, obj, args)
- void (*func)(FL_OBJECT *, float *, float *);
- FL_OBJECT *obj;
- PyObject *args;
+call_forms_OUTfOUTf (void (*func)(FL_OBJECT *, float *, float *), FL_OBJECT *obj, PyObject *args)
{
float f1, f2;
#ifdef UNUSED
static PyObject *
-call_forms_OUTf (func, obj, args)
- void (*func)(FL_OBJECT *, float *);
- FL_OBJECT *obj;
- PyObject *args;
+call_forms_OUTf (void (*func)(FL_OBJECT *, float *), FL_OBJECT *obj, PyObject *args)
{
float f;
/* Class : browser */
static PyObject *
-set_browser_topline(g, args)
- genericobject *g;
- PyObject *args;
+set_browser_topline(genericobject *g, PyObject *args)
{
return call_forms_INi (fl_set_browser_topline, g-> ob_generic, args);
}
static PyObject *
-clear_browser(g, args)
- genericobject *g;
- PyObject *args;
+clear_browser(genericobject *g, PyObject *args)
{
return generic_call (g, args, fl_clear_browser);
}
static PyObject *
-add_browser_line (g, args)
- genericobject *g;
- PyObject *args;
+add_browser_line (genericobject *g, PyObject *args)
{
return call_forms_INstr (fl_add_browser_line, g-> ob_generic, args);
}
static PyObject *
-addto_browser (g, args)
- genericobject *g;
- PyObject *args;
+addto_browser (genericobject *g, PyObject *args)
{
return call_forms_INstr (fl_addto_browser, g-> ob_generic, args);
}
static PyObject *
-insert_browser_line (g, args)
- genericobject *g;
- PyObject *args;
+insert_browser_line (genericobject *g, PyObject *args)
{
return call_forms_INiINstr (fl_insert_browser_line,
g-> ob_generic, args);
}
static PyObject *
-delete_browser_line (g, args)
- genericobject *g;
- PyObject *args;
+delete_browser_line (genericobject *g, PyObject *args)
{
return call_forms_INi (fl_delete_browser_line, g-> ob_generic, args);
}
static PyObject *
-replace_browser_line (g, args)
- genericobject *g;
- PyObject *args;
+replace_browser_line (genericobject *g, PyObject *args)
{
return call_forms_INiINstr (fl_replace_browser_line,
g-> ob_generic, args);
}
static PyObject *
-get_browser_line(g, args)
- genericobject *g;
- PyObject *args;
+get_browser_line(genericobject *g, PyObject *args)
{
int i;
char *str;
}
static PyObject *
-load_browser (g, args)
- genericobject *g;
- PyObject *args;
+load_browser (genericobject *g, PyObject *args)
{
/* XXX strictly speaking this is wrong since fl_load_browser
XXX returns int, not void */
}
static PyObject *
-get_browser_maxline(g, args)
- genericobject *g;
- PyObject *args;
+get_browser_maxline(genericobject *g, PyObject *args)
{
return call_forms_Ri (fl_get_browser_maxline, g-> ob_generic, args);
}
static PyObject *
-select_browser_line (g, args)
- genericobject *g;
- PyObject *args;
+select_browser_line (genericobject *g, PyObject *args)
{
return call_forms_INi (fl_select_browser_line, g-> ob_generic, args);
}
static PyObject *
-deselect_browser_line (g, args)
- genericobject *g;
- PyObject *args;
+deselect_browser_line (genericobject *g, PyObject *args)
{
return call_forms_INi (fl_deselect_browser_line, g-> ob_generic, args);
}
static PyObject *
-deselect_browser (g, args)
- genericobject *g;
- PyObject *args;
+deselect_browser (genericobject *g, PyObject *args)
{
return generic_call (g, args, fl_deselect_browser);
}
static PyObject *
-isselected_browser_line (g, args)
- genericobject *g;
- PyObject *args;
+isselected_browser_line (genericobject *g, PyObject *args)
{
int i, j;
}
static PyObject *
-get_browser (g, args)
- genericobject *g;
- PyObject *args;
+get_browser (genericobject *g, PyObject *args)
{
return call_forms_Ri (fl_get_browser, g-> ob_generic, args);
}
static PyObject *
-set_browser_fontsize (g, args)
- genericobject *g;
- PyObject *args;
+set_browser_fontsize (genericobject *g, PyObject *args)
{
return call_forms_INf (fl_set_browser_fontsize, g-> ob_generic, args);
}
static PyObject *
-set_browser_fontstyle (g, args)
- genericobject *g;
- PyObject *args;
+set_browser_fontstyle (genericobject *g, PyObject *args)
{
return call_forms_INi (fl_set_browser_fontstyle, g-> ob_generic, args);
}
static PyObject *
-set_browser_specialkey (g, args)
- genericobject *g;
- PyObject *args;
+set_browser_specialkey (genericobject *g, PyObject *args)
{
return call_forms_INc(fl_set_browser_specialkey, g-> ob_generic, args);
}
/* Class: button */
static PyObject *
-set_button(g, args)
- genericobject *g;
- PyObject *args;
+set_button(genericobject *g, PyObject *args)
{
return call_forms_INi (fl_set_button, g-> ob_generic, args);
}
static PyObject *
-get_button(g, args)
- genericobject *g;
- PyObject *args;
+get_button(genericobject *g, PyObject *args)
{
return call_forms_Ri (fl_get_button, g-> ob_generic, args);
}
static PyObject *
-get_button_numb(g, args)
- genericobject *g;
- PyObject *args;
+get_button_numb(genericobject *g, PyObject *args)
{
return call_forms_Ri (fl_get_button_numb, g-> ob_generic, args);
}
static PyObject *
-set_button_shortcut(g, args)
- genericobject *g;
- PyObject *args;
+set_button_shortcut(genericobject *g, PyObject *args)
{
return call_forms_INstr (fl_set_button_shortcut, g-> ob_generic, args);
}
/* Class: choice */
static PyObject *
-set_choice(g, args)
- genericobject *g;
- PyObject *args;
+set_choice(genericobject *g, PyObject *args)
{
return call_forms_INi (fl_set_choice, g-> ob_generic, args);
}
static PyObject *
-get_choice(g, args)
- genericobject *g;
- PyObject *args;
+get_choice(genericobject *g, PyObject *args)
{
return call_forms_Ri (fl_get_choice, g-> ob_generic, args);
}
static PyObject *
-clear_choice (g, args)
- genericobject *g;
- PyObject *args;
+clear_choice (genericobject *g, PyObject *args)
{
return generic_call (g, args, fl_clear_choice);
}
static PyObject *
-addto_choice (g, args)
- genericobject *g;
- PyObject *args;
+addto_choice (genericobject *g, PyObject *args)
{
return call_forms_INstr (fl_addto_choice, g-> ob_generic, args);
}
static PyObject *
-replace_choice (g, args)
- genericobject *g;
- PyObject *args;
+replace_choice (genericobject *g, PyObject *args)
{
return call_forms_INiINstr (fl_replace_choice, g-> ob_generic, args);
}
static PyObject *
-delete_choice (g, args)
- genericobject *g;
- PyObject *args;
+delete_choice (genericobject *g, PyObject *args)
{
return call_forms_INi (fl_delete_choice, g-> ob_generic, args);
}
static PyObject *
-get_choice_text (g, args)
- genericobject *g;
- PyObject *args;
+get_choice_text (genericobject *g, PyObject *args)
{
return call_forms_Rstr (fl_get_choice_text, g-> ob_generic, args);
}
static PyObject *
-set_choice_fontsize (g, args)
- genericobject *g;
- PyObject *args;
+set_choice_fontsize (genericobject *g, PyObject *args)
{
return call_forms_INf (fl_set_choice_fontsize, g-> ob_generic, args);
}
static PyObject *
-set_choice_fontstyle (g, args)
- genericobject *g;
- PyObject *args;
+set_choice_fontstyle (genericobject *g, PyObject *args)
{
return call_forms_INi (fl_set_choice_fontstyle, g-> ob_generic, args);
}
/* Class : Clock */
static PyObject *
-get_clock(g, args)
- genericobject *g;
- PyObject *args;
+get_clock(genericobject *g, PyObject *args)
{
int i0, i1, i2;
/* CLass : Counters */
static PyObject *
-get_counter_value(g, args)
- genericobject *g;
- PyObject *args;
+get_counter_value(genericobject *g, PyObject *args)
{
return call_forms_Rf (fl_get_counter_value, g-> ob_generic, args);
}
static PyObject *
-set_counter_value (g, args)
- genericobject *g;
- PyObject *args;
+set_counter_value (genericobject *g, PyObject *args)
{
return call_forms_INf (fl_set_counter_value, g-> ob_generic, args);
}
static PyObject *
-set_counter_precision (g, args)
- genericobject *g;
- PyObject *args;
+set_counter_precision (genericobject *g, PyObject *args)
{
return call_forms_INi (fl_set_counter_precision, g-> ob_generic, args);
}
static PyObject *
-set_counter_bounds (g, args)
- genericobject *g;
- PyObject *args;
+set_counter_bounds (genericobject *g, PyObject *args)
{
return call_forms_INfINf (fl_set_counter_bounds, g-> ob_generic, args);
}
static PyObject *
-set_counter_step (g, args)
- genericobject *g;
- PyObject *args;
+set_counter_step (genericobject *g, PyObject *args)
{
return call_forms_INfINf (fl_set_counter_step, g-> ob_generic, args);
}
static PyObject *
-set_counter_return (g, args)
- genericobject *g;
- PyObject *args;
+set_counter_return (genericobject *g, PyObject *args)
{
return call_forms_INi (fl_set_counter_return, g-> ob_generic, args);
}
/* Class: Dials */
static PyObject *
-get_dial_value(g, args)
- genericobject *g;
- PyObject *args;
+get_dial_value(genericobject *g, PyObject *args)
{
return call_forms_Rf (fl_get_dial_value, g-> ob_generic, args);
}
static PyObject *
-set_dial_value (g, args)
- genericobject *g;
- PyObject *args;
+set_dial_value (genericobject *g, PyObject *args)
{
return call_forms_INf (fl_set_dial_value, g-> ob_generic, args);
}
static PyObject *
-set_dial_bounds (g, args)
- genericobject *g;
- PyObject *args;
+set_dial_bounds (genericobject *g, PyObject *args)
{
return call_forms_INfINf (fl_set_dial_bounds, g-> ob_generic, args);
}
static PyObject *
-get_dial_bounds (g, args)
- genericobject *g;
- PyObject *args;
+get_dial_bounds (genericobject *g, PyObject *args)
{
return call_forms_OUTfOUTf (fl_get_dial_bounds, g-> ob_generic, args);
}
static PyObject *
-set_dial_step (g, args)
- genericobject *g;
- PyObject *args;
+set_dial_step (genericobject *g, PyObject *args)
{
return call_forms_INf (fl_set_dial_step, g-> ob_generic, args);
}
/* Class : Input */
static PyObject *
-set_input (g, args)
- genericobject *g;
- PyObject *args;
+set_input (genericobject *g, PyObject *args)
{
return call_forms_INstr (fl_set_input, g-> ob_generic, args);
}
static PyObject *
-get_input (g, args)
- genericobject *g;
- PyObject *args;
+get_input (genericobject *g, PyObject *args)
{
return call_forms_Rstr (fl_get_input, g-> ob_generic, args);
}
static PyObject *
-set_input_color (g, args)
- genericobject *g;
- PyObject *args;
+set_input_color (genericobject *g, PyObject *args)
{
return call_forms_INfINf (fl_set_input_color, g-> ob_generic, args);
}
static PyObject *
-set_input_return (g, args)
- genericobject *g;
- PyObject *args;
+set_input_return (genericobject *g, PyObject *args)
{
return call_forms_INi (fl_set_input_return, g-> ob_generic, args);
}
/* Class : Menu */
static PyObject *
-set_menu (g, args)
- genericobject *g;
- PyObject *args;
+set_menu (genericobject *g, PyObject *args)
{
return call_forms_INstr (fl_set_menu, g-> ob_generic, args);
}
static PyObject *
-get_menu (g, args)
- genericobject *g;
- PyObject *args;
+get_menu (genericobject *g, PyObject *args)
{
/* XXX strictly speaking this is wrong since fl_get_menu
XXX returns long, not int */
}
static PyObject *
-get_menu_text (g, args)
- genericobject *g;
- PyObject *args;
+get_menu_text (genericobject *g, PyObject *args)
{
return call_forms_Rstr (fl_get_menu_text, g-> ob_generic, args);
}
static PyObject *
-addto_menu (g, args)
- genericobject *g;
- PyObject *args;
+addto_menu (genericobject *g, PyObject *args)
{
return call_forms_INstr (fl_addto_menu, g-> ob_generic, args);
}
/* Class: Sliders */
static PyObject *
-get_slider_value(g, args)
- genericobject *g;
- PyObject *args;
+get_slider_value(genericobject *g, PyObject *args)
{
return call_forms_Rf (fl_get_slider_value, g-> ob_generic, args);
}
static PyObject *
-set_slider_value (g, args)
- genericobject *g;
- PyObject *args;
+set_slider_value (genericobject *g, PyObject *args)
{
return call_forms_INf (fl_set_slider_value, g-> ob_generic, args);
}
static PyObject *
-set_slider_bounds (g, args)
- genericobject *g;
- PyObject *args;
+set_slider_bounds (genericobject *g, PyObject *args)
{
return call_forms_INfINf (fl_set_slider_bounds, g-> ob_generic, args);
}
static PyObject *
-get_slider_bounds (g, args)
- genericobject *g;
- PyObject *args;
+get_slider_bounds (genericobject *g, PyObject *args)
{
return call_forms_OUTfOUTf(fl_get_slider_bounds, g-> ob_generic, args);
}
static PyObject *
-set_slider_return (g, args)
- genericobject *g;
- PyObject *args;
+set_slider_return (genericobject *g, PyObject *args)
{
return call_forms_INf (fl_set_slider_return, g-> ob_generic, args);
}
static PyObject *
-set_slider_size (g, args)
- genericobject *g;
- PyObject *args;
+set_slider_size (genericobject *g, PyObject *args)
{
return call_forms_INf (fl_set_slider_size, g-> ob_generic, args);
}
static PyObject *
-set_slider_precision (g, args)
- genericobject *g;
- PyObject *args;
+set_slider_precision (genericobject *g, PyObject *args)
{
return call_forms_INi (fl_set_slider_precision, g-> ob_generic, args);
}
static PyObject *
-set_slider_step (g, args)
- genericobject *g;
- PyObject *args;
+set_slider_step (genericobject *g, PyObject *args)
{
return call_forms_INf (fl_set_slider_step, g-> ob_generic, args);
}
};
static PyObject *
-set_positioner_xvalue (g, args)
- genericobject *g;
- PyObject *args;
+set_positioner_xvalue (genericobject *g, PyObject *args)
{
return call_forms_INf (fl_set_positioner_xvalue, g-> ob_generic, args);
}
static PyObject *
-set_positioner_xbounds (g, args)
- genericobject *g;
- PyObject *args;
+set_positioner_xbounds (genericobject *g, PyObject *args)
{
return call_forms_INfINf (fl_set_positioner_xbounds,
g-> ob_generic, args);
}
static PyObject *
-set_positioner_yvalue (g, args)
- genericobject *g;
- PyObject *args;
+set_positioner_yvalue (genericobject *g, PyObject *args)
{
return call_forms_INf (fl_set_positioner_yvalue, g-> ob_generic, args);
}
static PyObject *
-set_positioner_ybounds (g, args)
- genericobject *g;
- PyObject *args;
+set_positioner_ybounds (genericobject *g, PyObject *args)
{
return call_forms_INfINf (fl_set_positioner_ybounds,
g-> ob_generic, args);
}
static PyObject *
-get_positioner_xvalue (g, args)
- genericobject *g;
- PyObject *args;
+get_positioner_xvalue (genericobject *g, PyObject *args)
{
return call_forms_Rf (fl_get_positioner_xvalue, g-> ob_generic, args);
}
static PyObject *
-get_positioner_xbounds (g, args)
- genericobject *g;
- PyObject *args;
+get_positioner_xbounds (genericobject *g, PyObject *args)
{
return call_forms_OUTfOUTf (fl_get_positioner_xbounds,
g-> ob_generic, args);
}
static PyObject *
-get_positioner_yvalue (g, args)
- genericobject *g;
- PyObject *args;
+get_positioner_yvalue (genericobject *g, PyObject *args)
{
return call_forms_Rf (fl_get_positioner_yvalue, g-> ob_generic, args);
}
static PyObject *
-get_positioner_ybounds (g, args)
- genericobject *g;
- PyObject *args;
+get_positioner_ybounds (genericobject *g, PyObject *args)
{
return call_forms_OUTfOUTf (fl_get_positioner_ybounds,
g-> ob_generic, args);
/* Class timer */
static PyObject *
-set_timer (g, args)
- genericobject *g;
- PyObject *args;
+set_timer (genericobject *g, PyObject *args)
{
return call_forms_INf (fl_set_timer, g-> ob_generic, args);
}
static PyObject *
-get_timer (g, args)
- genericobject *g;
- PyObject *args;
+get_timer (genericobject *g, PyObject *args)
{
return call_forms_Rf (fl_get_timer, g-> ob_generic, args);
}
#define is_formobject(v) ((v)->ob_type == &Formtype)
static PyObject *
-form_show_form(f, args)
- formobject *f;
- PyObject *args;
+form_show_form(formobject *f, PyObject *args)
{
int place, border;
char *name;
}
static PyObject *
-form_call(func, f, args)
- FL_FORM *f;
- PyObject *args;
- void (*func)(FL_FORM *);
+form_call(void (*func)(FL_FORM *), FL_FORM *f, PyObject *args)
{
if (!PyArg_NoArgs(args)) return NULL;
}
static PyObject *
-form_call_INiINi(func, f, args)
- FL_FORM *f;
- PyObject *args;
- void (*func)(FL_FORM *, int, int);
+form_call_INiINi(void (*func)(FL_FORM *, int, int), FL_FORM *f, PyObject *args)
{
int a, b;
}
static PyObject *
-form_call_INfINf(func, f, args)
- FL_FORM *f;
- PyObject *args;
- void (*func)(FL_FORM *, float, float);
+form_call_INfINf(void (*func)(FL_FORM *, float, float), FL_FORM *f, PyObject *args)
{
float a, b;
}
static PyObject *
-form_hide_form(f, args)
- formobject *f;
- PyObject *args;
+form_hide_form(formobject *f, PyObject *args)
{
return form_call(fl_hide_form, f-> ob_form, args);
}
static PyObject *
-form_redraw_form(f, args)
- formobject *f;
- PyObject *args;
+form_redraw_form(formobject *f, PyObject *args)
{
return form_call(fl_redraw_form, f-> ob_form, args);
}
static PyObject *
-form_set_form_position(f, args)
- formobject *f;
- PyObject *args;
+form_set_form_position(formobject *f, PyObject *args)
{
return form_call_INiINi(fl_set_form_position, f-> ob_form, args);
}
static PyObject *
-form_set_form_size(f, args)
- formobject *f;
- PyObject *args;
+form_set_form_size(formobject *f, PyObject *args)
{
return form_call_INiINi(fl_set_form_size, f-> ob_form, args);
}
static PyObject *
-form_scale_form(f, args)
- formobject *f;
- PyObject *args;
+form_scale_form(formobject *f, PyObject *args)
{
return form_call_INfINf(fl_scale_form, f-> ob_form, args);
}
static PyObject *
-generic_add_object(f, args, func, internal_methods)
- formobject *f;
- PyObject *args;
- FL_OBJECT *(*func)(int, float, float, float, float, char*);
- PyMethodDef *internal_methods;
+generic_add_object(formobject *f, PyObject *args, FL_OBJECT *(*func)(int, float, float, float, float, char*), PyMethodDef *internal_methods)
{
int type;
float x, y, w, h;
}
static PyObject *
-form_add_button(f, args)
- formobject *f;
- PyObject *args;
+form_add_button(formobject *f, PyObject *args)
{
return generic_add_object(f, args, fl_add_button, button_methods);
}
static PyObject *
-form_add_lightbutton(f, args)
- formobject *f;
- PyObject *args;
+form_add_lightbutton(formobject *f, PyObject *args)
{
return generic_add_object(f, args, fl_add_lightbutton, button_methods);
}
static PyObject *
-form_add_roundbutton(f, args)
- formobject *f;
- PyObject *args;
+form_add_roundbutton(formobject *f, PyObject *args)
{
return generic_add_object(f, args, fl_add_roundbutton, button_methods);
}
static PyObject *
-form_add_menu (f, args)
- formobject *f;
- PyObject *args;
+form_add_menu (formobject *f, PyObject *args)
{
return generic_add_object(f, args, fl_add_menu, menu_methods);
}
static PyObject *
-form_add_slider(f, args)
- formobject *f;
- PyObject *args;
+form_add_slider(formobject *f, PyObject *args)
{
return generic_add_object(f, args, fl_add_slider, slider_methods);
}
static PyObject *
-form_add_valslider(f, args)
- formobject *f;
- PyObject *args;
+form_add_valslider(formobject *f, PyObject *args)
{
return generic_add_object(f, args, fl_add_valslider, slider_methods);
}
static PyObject *
-form_add_dial(f, args)
- formobject *f;
- PyObject *args;
+form_add_dial(formobject *f, PyObject *args)
{
return generic_add_object(f, args, fl_add_dial, dial_methods);
}
static PyObject *
-form_add_counter(f, args)
- formobject *f;
- PyObject *args;
+form_add_counter(formobject *f, PyObject *args)
{
return generic_add_object(f, args, fl_add_counter, counter_methods);
}
static PyObject *
-form_add_clock(f, args)
- formobject *f;
- PyObject *args;
+form_add_clock(formobject *f, PyObject *args)
{
return generic_add_object(f, args, fl_add_clock, clock_methods);
}
static PyObject *
-form_add_box(f, args)
- formobject *f;
- PyObject *args;
+form_add_box(formobject *f, PyObject *args)
{
return generic_add_object(f, args, fl_add_box,
(PyMethodDef *)NULL);
}
static PyObject *
-form_add_choice(f, args)
- formobject *f;
- PyObject *args;
+form_add_choice(formobject *f, PyObject *args)
{
return generic_add_object(f, args, fl_add_choice, choice_methods);
}
static PyObject *
-form_add_browser(f, args)
- formobject *f;
- PyObject *args;
+form_add_browser(formobject *f, PyObject *args)
{
return generic_add_object(f, args, fl_add_browser, browser_methods);
}
static PyObject *
-form_add_positioner(f, args)
- formobject *f;
- PyObject *args;
+form_add_positioner(formobject *f, PyObject *args)
{
return generic_add_object(f, args, fl_add_positioner,
positioner_methods);
}
static PyObject *
-form_add_input(f, args)
- formobject *f;
- PyObject *args;
+form_add_input(formobject *f, PyObject *args)
{
return generic_add_object(f, args, fl_add_input, input_methods);
}
static PyObject *
-form_add_text(f, args)
- formobject *f;
- PyObject *args;
+form_add_text(formobject *f, PyObject *args)
{
return generic_add_object(f, args, fl_add_text,
(PyMethodDef *)NULL);
}
static PyObject *
-form_add_timer(f, args)
- formobject *f;
- PyObject *args;
+form_add_timer(formobject *f, PyObject *args)
{
return generic_add_object(f, args, fl_add_timer, timer_methods);
}
static PyObject *
-form_freeze_form(f, args)
- formobject *f;
- PyObject *args;
+form_freeze_form(formobject *f, PyObject *args)
{
return form_call(fl_freeze_form, f-> ob_form, args);
}
static PyObject *
-form_unfreeze_form(f, args)
- formobject *f;
- PyObject *args;
+form_unfreeze_form(formobject *f, PyObject *args)
{
return form_call(fl_unfreeze_form, f-> ob_form, args);
}
static PyObject *
-form_activate_form(f, args)
- formobject *f;
- PyObject *args;
+form_activate_form(formobject *f, PyObject *args)
{
return form_call(fl_activate_form, f-> ob_form, args);
}
static PyObject *
-form_deactivate_form(f, args)
- formobject *f;
- PyObject *args;
+form_deactivate_form(formobject *f, PyObject *args)
{
return form_call(fl_deactivate_form, f-> ob_form, args);
}
static PyObject *
-form_bgn_group(f, args)
- formobject *f;
- PyObject *args;
+form_bgn_group(formobject *f, PyObject *args)
{
FL_OBJECT *obj;
}
static PyObject *
-form_end_group(f, args)
- formobject *f;
- PyObject *args;
+form_end_group(formobject *f, PyObject *args)
{
fl_addto_form(f-> ob_form);
fl_end_group();
}
static PyObject *
-forms_find_first_or_last(func, f, args)
- FL_OBJECT *(*func)(FL_FORM *, int, float, float);
- formobject *f;
- PyObject *args;
+forms_find_first_or_last(FL_OBJECT *(*func)(FL_FORM *, int, float, float), formobject *f, PyObject *args)
{
int type;
float mx, my;
}
static PyObject *
-form_find_first(f, args)
- formobject *f;
- PyObject *args;
+form_find_first(formobject *f, PyObject *args)
{
return forms_find_first_or_last(fl_find_first, f, args);
}
static PyObject *
-form_find_last(f, args)
- formobject *f;
- PyObject *args;
+form_find_last(formobject *f, PyObject *args)
{
return forms_find_first_or_last(fl_find_last, f, args);
}
static PyObject *
-form_set_object_focus(f, args)
- formobject *f;
- PyObject *args;
+form_set_object_focus(formobject *f, PyObject *args)
{
genericobject *g;
if (args == NULL || !is_genericobject(args)) {
};
static void
-form_dealloc(f)
- formobject *f;
+form_dealloc(formobject *f)
{
releaseobjects(f->ob_form);
if (f->ob_form->visible)
#undef OFF
static PyObject *
-form_getattr(f, name)
- formobject *f;
- char *name;
+form_getattr(formobject *f, char *name)
{
PyObject *meth;
}
static int
-form_setattr(f, name, v)
- formobject *f;
- char *name;
- PyObject *v;
+form_setattr(formobject *f, char *name, PyObject *v)
{
if (v == NULL) {
PyErr_SetString(PyExc_TypeError,
}
static PyObject *
-form_repr(f)
- formobject *f;
+form_repr(formobject *f)
{
char buf[100];
sprintf(buf, "<FORMS_form at %p, window=%ld>",
};
static PyObject *
-newformobject(form)
- FL_FORM *form;
+newformobject(FL_FORM *form)
{
formobject *f;
f = PyObject_New(formobject, &Formtype);
/* The "fl" module */
static PyObject *
-forms_make_form(dummy, args)
- PyObject *dummy;
- PyObject *args;
+forms_make_form(PyObject *dummy, PyObject *args)
{
int type;
float w, h;
}
static PyObject *
-forms_activate_all_forms(f, args)
- PyObject *f;
- PyObject *args;
+forms_activate_all_forms(PyObject *f, PyObject *args)
{
fl_activate_all_forms();
Py_INCREF(Py_None);
}
static PyObject *
-forms_deactivate_all_forms(f, args)
- PyObject *f;
- PyObject *args;
+forms_deactivate_all_forms(PyObject *f, PyObject *args)
{
fl_deactivate_all_forms();
Py_INCREF(Py_None);
static PyObject *my_event_callback = NULL;
static PyObject *
-forms_set_event_call_back(dummy, args)
- PyObject *dummy;
- PyObject *args;
+forms_set_event_call_back(PyObject *dummy, PyObject *args)
{
if (args == Py_None)
args = NULL;
}
static PyObject *
-forms_do_or_check_forms(dummy, args, func)
- PyObject *dummy;
- PyObject *args;
- FL_OBJECT *(*func)();
+forms_do_or_check_forms(PyObject *dummy, PyObject *args, FL_OBJECT *(*func)())
{
FL_OBJECT *generic;
genericobject *g;
}
static PyObject *
-forms_do_forms(dummy, args)
- PyObject *dummy;
- PyObject *args;
+forms_do_forms(PyObject *dummy, PyObject *args)
{
return forms_do_or_check_forms(dummy, args, fl_do_forms);
}
static PyObject *
-forms_check_forms(dummy, args)
- PyObject *dummy;
- PyObject *args;
+forms_check_forms(PyObject *dummy, PyObject *args)
{
return forms_do_or_check_forms(dummy, args, fl_check_forms);
}
static PyObject *
-forms_do_only_forms(dummy, args)
- PyObject *dummy;
- PyObject *args;
+forms_do_only_forms(PyObject *dummy, PyObject *args)
{
return forms_do_or_check_forms(dummy, args, fl_do_only_forms);
}
static PyObject *
-forms_check_only_forms(dummy, args)
- PyObject *dummy;
- PyObject *args;
+forms_check_only_forms(PyObject *dummy, PyObject *args)
{
return forms_do_or_check_forms(dummy, args, fl_check_only_forms);
}
#ifdef UNUSED
static PyObject *
-fl_call(func, args)
- PyObject *args;
- void (*func)();
+fl_call(void (*func)(), PyObject *args)
{
if (!PyArg_NoArgs(args))
return NULL;
#endif
static PyObject *
-forms_set_graphics_mode(dummy, args)
- PyObject *dummy;
- PyObject *args;
+forms_set_graphics_mode(PyObject *dummy, PyObject *args)
{
int rgbmode, doublebuf;
}
static PyObject *
-forms_get_rgbmode(dummy, args)
- PyObject *dummy;
- PyObject *args;
+forms_get_rgbmode(PyObject *dummy, PyObject *args)
{
extern int fl_rgbmode;
}
static PyObject *
-forms_show_errors(dummy, args)
- PyObject *dummy;
- PyObject *args;
+forms_show_errors(PyObject *dummy, PyObject *args)
{
int show;
if (!PyArg_Parse(args, "i", &show))
}
static PyObject *
-forms_set_font_name(dummy, args)
- PyObject *dummy;
- PyObject *args;
+forms_set_font_name(PyObject *dummy, PyObject *args)
{
int numb;
char *name;
static PyObject *
-forms_qdevice(self, args)
- PyObject *self;
- PyObject *args;
+forms_qdevice(PyObject *self, PyObject *args)
{
short arg1;
if (!PyArg_Parse(args, "h", &arg1))
}
static PyObject *
-forms_unqdevice(self, args)
- PyObject *self;
- PyObject *args;
+forms_unqdevice(PyObject *self, PyObject *args)
{
short arg1;
if (!PyArg_Parse(args, "h", &arg1))
}
static PyObject *
-forms_isqueued(self, args)
- PyObject *self;
- PyObject *args;
+forms_isqueued(PyObject *self, PyObject *args)
{
long retval;
short arg1;
}
static PyObject *
-forms_qtest(self, args)
- PyObject *self;
- PyObject *args;
+forms_qtest(PyObject *self, PyObject *args)
{
long retval;
retval = fl_qtest();
static PyObject *
-forms_qread(self, args)
- PyObject *self;
- PyObject *args;
+forms_qread(PyObject *self, PyObject *args)
{
int dev;
short val;
}
static PyObject *
-forms_qreset(self, args)
- PyObject *self;
- PyObject *args;
+forms_qreset(PyObject *self, PyObject *args)
{
if (!PyArg_NoArgs(args)) return NULL;
}
static PyObject *
-forms_qenter(self, args)
- PyObject *self;
- PyObject *args;
+forms_qenter(PyObject *self, PyObject *args)
{
short arg1, arg2;
if (!PyArg_Parse(args, "(hh)", &arg1, &arg2))
}
static PyObject *
-forms_color(self, args)
- PyObject *self;
- PyObject *args;
+forms_color(PyObject *self, PyObject *args)
{
int arg;
}
static PyObject *
-forms_mapcolor(self, args)
- PyObject *self;
- PyObject *args;
+forms_mapcolor(PyObject *self, PyObject *args)
{
int arg0, arg1, arg2, arg3;
}
static PyObject *
-forms_getmcolor(self, args)
- PyObject *self;
- PyObject *args;
+forms_getmcolor(PyObject *self, PyObject *args)
{
int arg;
short r, g, b;
}
static PyObject *
-forms_get_mouse(self, args)
- PyObject *self;
- PyObject *args;
+forms_get_mouse(PyObject *self, PyObject *args)
{
float x, y;
}
static PyObject *
-forms_tie(self, args)
- PyObject *self;
- PyObject *args;
+forms_tie(PyObject *self, PyObject *args)
{
short arg1, arg2, arg3;
if (!PyArg_Parse(args, "(hhh)", &arg1, &arg2, &arg3))
}
static PyObject *
-forms_show_message(f, args)
- PyObject *f;
- PyObject *args;
+forms_show_message(PyObject *f, PyObject *args)
{
char *a, *b, *c;
}
static PyObject *
-forms_show_choice(f, args)
- PyObject *f;
- PyObject *args;
+forms_show_choice(PyObject *f, PyObject *args)
{
char *m1, *m2, *m3, *b1, *b2, *b3;
int nb;
}
static PyObject *
-forms_show_question(f, args)
- PyObject *f;
- PyObject *args;
+forms_show_question(PyObject *f, PyObject *args)
{
int ret;
char *a, *b, *c;
}
static PyObject *
-forms_show_input(f, args)
- PyObject *f;
- PyObject *args;
+forms_show_input(PyObject *f, PyObject *args)
{
char *str;
char *a, *b;
}
static PyObject *
-forms_file_selector(f, args)
- PyObject *f;
- PyObject *args;
+forms_file_selector(PyObject *f, PyObject *args)
{
char *str;
char *a, *b, *c, *d;
static PyObject *
-forms_file_selector_func(args, func)
- PyObject *args;
- char *(*func)();
+forms_file_selector_func(PyObject *args, char *(*func)())
{
char *str;
}
static PyObject *
-forms_get_directory(f, args)
- PyObject *f;
- PyObject *args;
+forms_get_directory(PyObject *f, PyObject *args)
{
return forms_file_selector_func(args, fl_get_directory);
}
static PyObject *
-forms_get_pattern(f, args)
- PyObject *f;
- PyObject *args;
+forms_get_pattern(PyObject *f, PyObject *args)
{
return forms_file_selector_func(args, fl_get_pattern);
}
static PyObject *
-forms_get_filename(f, args)
- PyObject *f;
- PyObject *args;
+forms_get_filename(PyObject *f, PyObject *args)
{
return forms_file_selector_func(args, fl_get_filename);
}
static PyObject *
-gl_qread(self, args)
- PyObject *self;
- PyObject *args;
+gl_qread(PyObject *self, PyObject *args)
{
long retval;
short arg1 ;
static PyObject *
-gl_varray(self, args)
- PyObject *self;
- PyObject *args;
+gl_varray(PyObject *self, PyObject *args)
{
PyObject *v, *w=NULL;
int i, n, width;
static PyObject *
-gl_nvarray(self, args)
- PyObject *self;
- PyObject *args;
+gl_nvarray(PyObject *self, PyObject *args)
{
return gen_nvarray(args, 0);
}
static PyObject *
-gl_vnarray(self, args)
- PyObject *self;
- PyObject *args;
+gl_vnarray(PyObject *self, PyObject *args)
{
return gen_nvarray(args, 1);
}
argument order, 0: normal first, 1: vector first. */
static PyObject *
-gen_nvarray(args, inorm)
- PyObject *args;
- int inorm;
+gen_nvarray(PyObject *args, int inorm)
{
PyObject *v, *w, *wnorm, *wvec;
int i, n;
static PyObject *
-gl_nurbssurface(self, args)
- PyObject *self;
- PyObject *args;
+gl_nurbssurface(PyObject *self, PyObject *args)
{
long arg1 ;
double * arg2 ;
static PyObject *
-gl_nurbscurve(self, args)
- PyObject *self;
- PyObject *args;
+gl_nurbscurve(PyObject *self, PyObject *args)
{
long arg1 ;
double * arg2 ;
static PyObject *
-gl_pwlcurve(self, args)
- PyObject *self;
- PyObject *args;
+gl_pwlcurve(PyObject *self, PyObject *args)
{
PyObject *v;
long type;
static long pickbuffersize;
static PyObject *
-pick_select(args, func)
- PyObject *args;
- void (*func)();
+pick_select(PyObject *args, void (*func)())
{
if (!PyArg_GetLong(args, 1, 0, &pickbuffersize))
return NULL;
}
static PyObject *
-endpick_select(args, func)
- PyObject *args;
- long (*func)();
+endpick_select(PyObject *args, long (*func)())
{
PyObject *v, *w;
int i, nhits, n;
extern void pick(), gselect();
extern long endpick(), endselect();
-static PyObject *gl_pick(self, args) PyObject *self, *args; {
+static PyObject *gl_pick(PyObject *self, PyObject *args)
+{
return pick_select(args, pick);
}
-static PyObject *gl_endpick(self, args) PyObject *self, *args; {
+static PyObject *gl_endpick(PyObject *self, PyObject *args)
+{
return endpick_select(args, endpick);
}
-static PyObject *gl_gselect(self, args) PyObject *self, *args; {
+static PyObject *gl_gselect(PyObject *self, PyObject *args)
+{
return pick_select(args, gselect);
}
-static PyObject *gl_endselect(self, args) PyObject *self, *args; {
+static PyObject *gl_endselect(PyObject *self, PyObject *args)
+{
return endpick_select(args, endselect);
}
static PyObject *
-gl_getmatrix(self, args)
- PyObject *self;
- PyObject *args;
+gl_getmatrix(PyObject *self, PyObject *args)
{
Matrix arg1;
PyObject *v, *w;
static PyObject *
-gl_altgetmatrix(self, args)
- PyObject *self;
- PyObject *args;
+gl_altgetmatrix(PyObject *self, PyObject *args)
{
Matrix arg1;
PyObject *v, *w;
static PyObject *
-gl_lrectwrite(self, args)
- PyObject *self;
- PyObject *args;
+gl_lrectwrite(PyObject *self, PyObject *args)
{
short x1 ;
short y1 ;
static PyObject *
-gl_lrectread(self, args)
- PyObject *self;
- PyObject *args;
+gl_lrectread(PyObject *self, PyObject *args)
{
short x1 ;
short y1 ;
static PyObject *
-gl_readdisplay(self, args)
- PyObject *self;
- PyObject *args;
+gl_readdisplay(PyObject *self, PyObject *args)
{
short x1, y1, x2, y2;
unsigned long *parray, hints;
static PyObject *
-gl_packrect(self, args)
- PyObject *self;
- PyObject *args;
+gl_packrect(PyObject *self, PyObject *args)
{
long width, height, packfactor;
char *s;
static int unpacktab_inited = 0;
static PyObject *
-gl_unpackrect(self, args)
- PyObject *self;
- PyObject *args;
+gl_unpackrect(PyObject *self, PyObject *args)
{
long width, height, packfactor;
char *s;
}
static PyObject *
-gl_gversion(self, args)
- PyObject *self;
- PyObject *args;
+gl_gversion(PyObject *self, PyObject *args)
{
char buf[20];
gversion(buf);
/* void clear - Manual because of clash with termcap */
static PyObject *
-gl_clear(self, args)
- PyObject *self;
- PyObject *args;
+gl_clear(PyObject *self, PyObject *args)
{
__GLclear( );
Py_INCREF(Py_None);
/* long getshade */
static PyObject *
-gl_getshade(self, args)
- PyObject *self;
- PyObject *args;
+gl_getshade(PyObject *self, PyObject *args)
{
long retval;
retval = getshade( );
/* void devport short s long s */
static PyObject *
-gl_devport(self, args)
- PyObject *self;
- PyObject *args;
+gl_devport(PyObject *self, PyObject *args)
{
short arg1 ;
long arg2 ;
/* void rdr2i long s long s */
static PyObject *
-gl_rdr2i(self, args)
- PyObject *self;
- PyObject *args;
+gl_rdr2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void rectfs short s short s short s short s */
static PyObject *
-gl_rectfs(self, args)
- PyObject *self;
- PyObject *args;
+gl_rectfs(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void rects short s short s short s short s */
static PyObject *
-gl_rects(self, args)
- PyObject *self;
- PyObject *args;
+gl_rects(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void rmv2i long s long s */
static PyObject *
-gl_rmv2i(self, args)
- PyObject *self;
- PyObject *args;
+gl_rmv2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void noport */
static PyObject *
-gl_noport(self, args)
- PyObject *self;
- PyObject *args;
+gl_noport(PyObject *self, PyObject *args)
{
noport( );
Py_INCREF(Py_None);
/* void popviewport */
static PyObject *
-gl_popviewport(self, args)
- PyObject *self;
- PyObject *args;
+gl_popviewport(PyObject *self, PyObject *args)
{
popviewport( );
Py_INCREF(Py_None);
/* void clearhitcode */
static PyObject *
-gl_clearhitcode(self, args)
- PyObject *self;
- PyObject *args;
+gl_clearhitcode(PyObject *self, PyObject *args)
{
clearhitcode( );
Py_INCREF(Py_None);
/* void closeobj */
static PyObject *
-gl_closeobj(self, args)
- PyObject *self;
- PyObject *args;
+gl_closeobj(PyObject *self, PyObject *args)
{
closeobj( );
Py_INCREF(Py_None);
/* void cursoff */
static PyObject *
-gl_cursoff(self, args)
- PyObject *self;
- PyObject *args;
+gl_cursoff(PyObject *self, PyObject *args)
{
cursoff( );
Py_INCREF(Py_None);
/* void curson */
static PyObject *
-gl_curson(self, args)
- PyObject *self;
- PyObject *args;
+gl_curson(PyObject *self, PyObject *args)
{
curson( );
Py_INCREF(Py_None);
/* void doublebuffer */
static PyObject *
-gl_doublebuffer(self, args)
- PyObject *self;
- PyObject *args;
+gl_doublebuffer(PyObject *self, PyObject *args)
{
doublebuffer( );
Py_INCREF(Py_None);
/* void finish */
static PyObject *
-gl_finish(self, args)
- PyObject *self;
- PyObject *args;
+gl_finish(PyObject *self, PyObject *args)
{
finish( );
Py_INCREF(Py_None);
/* void gconfig */
static PyObject *
-gl_gconfig(self, args)
- PyObject *self;
- PyObject *args;
+gl_gconfig(PyObject *self, PyObject *args)
{
gconfig( );
Py_INCREF(Py_None);
/* void ginit */
static PyObject *
-gl_ginit(self, args)
- PyObject *self;
- PyObject *args;
+gl_ginit(PyObject *self, PyObject *args)
{
ginit( );
Py_INCREF(Py_None);
/* void greset */
static PyObject *
-gl_greset(self, args)
- PyObject *self;
- PyObject *args;
+gl_greset(PyObject *self, PyObject *args)
{
greset( );
Py_INCREF(Py_None);
/* void multimap */
static PyObject *
-gl_multimap(self, args)
- PyObject *self;
- PyObject *args;
+gl_multimap(PyObject *self, PyObject *args)
{
multimap( );
Py_INCREF(Py_None);
/* void onemap */
static PyObject *
-gl_onemap(self, args)
- PyObject *self;
- PyObject *args;
+gl_onemap(PyObject *self, PyObject *args)
{
onemap( );
Py_INCREF(Py_None);
/* void popattributes */
static PyObject *
-gl_popattributes(self, args)
- PyObject *self;
- PyObject *args;
+gl_popattributes(PyObject *self, PyObject *args)
{
popattributes( );
Py_INCREF(Py_None);
/* void popmatrix */
static PyObject *
-gl_popmatrix(self, args)
- PyObject *self;
- PyObject *args;
+gl_popmatrix(PyObject *self, PyObject *args)
{
popmatrix( );
Py_INCREF(Py_None);
/* void pushattributes */
static PyObject *
-gl_pushattributes(self, args)
- PyObject *self;
- PyObject *args;
+gl_pushattributes(PyObject *self, PyObject *args)
{
pushattributes( );
Py_INCREF(Py_None);
/* void pushmatrix */
static PyObject *
-gl_pushmatrix(self, args)
- PyObject *self;
- PyObject *args;
+gl_pushmatrix(PyObject *self, PyObject *args)
{
pushmatrix( );
Py_INCREF(Py_None);
/* void pushviewport */
static PyObject *
-gl_pushviewport(self, args)
- PyObject *self;
- PyObject *args;
+gl_pushviewport(PyObject *self, PyObject *args)
{
pushviewport( );
Py_INCREF(Py_None);
/* void qreset */
static PyObject *
-gl_qreset(self, args)
- PyObject *self;
- PyObject *args;
+gl_qreset(PyObject *self, PyObject *args)
{
qreset( );
Py_INCREF(Py_None);
/* void RGBmode */
static PyObject *
-gl_RGBmode(self, args)
- PyObject *self;
- PyObject *args;
+gl_RGBmode(PyObject *self, PyObject *args)
{
RGBmode( );
Py_INCREF(Py_None);
/* void singlebuffer */
static PyObject *
-gl_singlebuffer(self, args)
- PyObject *self;
- PyObject *args;
+gl_singlebuffer(PyObject *self, PyObject *args)
{
singlebuffer( );
Py_INCREF(Py_None);
/* void swapbuffers */
static PyObject *
-gl_swapbuffers(self, args)
- PyObject *self;
- PyObject *args;
+gl_swapbuffers(PyObject *self, PyObject *args)
{
swapbuffers( );
Py_INCREF(Py_None);
/* void gsync */
static PyObject *
-gl_gsync(self, args)
- PyObject *self;
- PyObject *args;
+gl_gsync(PyObject *self, PyObject *args)
{
gsync( );
Py_INCREF(Py_None);
/* void gflush */
static PyObject *
-gl_gflush(self, args)
- PyObject *self;
- PyObject *args;
+gl_gflush(PyObject *self, PyObject *args)
{
gflush( );
Py_INCREF(Py_None);
/* void tpon */
static PyObject *
-gl_tpon(self, args)
- PyObject *self;
- PyObject *args;
+gl_tpon(PyObject *self, PyObject *args)
{
tpon( );
Py_INCREF(Py_None);
/* void tpoff */
static PyObject *
-gl_tpoff(self, args)
- PyObject *self;
- PyObject *args;
+gl_tpoff(PyObject *self, PyObject *args)
{
tpoff( );
Py_INCREF(Py_None);
/* void clkon */
static PyObject *
-gl_clkon(self, args)
- PyObject *self;
- PyObject *args;
+gl_clkon(PyObject *self, PyObject *args)
{
clkon( );
Py_INCREF(Py_None);
/* void clkoff */
static PyObject *
-gl_clkoff(self, args)
- PyObject *self;
- PyObject *args;
+gl_clkoff(PyObject *self, PyObject *args)
{
clkoff( );
Py_INCREF(Py_None);
/* void ringbell */
static PyObject *
-gl_ringbell(self, args)
- PyObject *self;
- PyObject *args;
+gl_ringbell(PyObject *self, PyObject *args)
{
ringbell( );
Py_INCREF(Py_None);
/* void gbegin */
static PyObject *
-gl_gbegin(self, args)
- PyObject *self;
- PyObject *args;
+gl_gbegin(PyObject *self, PyObject *args)
{
gbegin( );
Py_INCREF(Py_None);
/* void textinit */
static PyObject *
-gl_textinit(self, args)
- PyObject *self;
- PyObject *args;
+gl_textinit(PyObject *self, PyObject *args)
{
textinit( );
Py_INCREF(Py_None);
/* void initnames */
static PyObject *
-gl_initnames(self, args)
- PyObject *self;
- PyObject *args;
+gl_initnames(PyObject *self, PyObject *args)
{
initnames( );
Py_INCREF(Py_None);
/* void pclos */
static PyObject *
-gl_pclos(self, args)
- PyObject *self;
- PyObject *args;
+gl_pclos(PyObject *self, PyObject *args)
{
pclos( );
Py_INCREF(Py_None);
/* void popname */
static PyObject *
-gl_popname(self, args)
- PyObject *self;
- PyObject *args;
+gl_popname(PyObject *self, PyObject *args)
{
popname( );
Py_INCREF(Py_None);
/* void spclos */
static PyObject *
-gl_spclos(self, args)
- PyObject *self;
- PyObject *args;
+gl_spclos(PyObject *self, PyObject *args)
{
spclos( );
Py_INCREF(Py_None);
/* void zclear */
static PyObject *
-gl_zclear(self, args)
- PyObject *self;
- PyObject *args;
+gl_zclear(PyObject *self, PyObject *args)
{
zclear( );
Py_INCREF(Py_None);
/* void screenspace */
static PyObject *
-gl_screenspace(self, args)
- PyObject *self;
- PyObject *args;
+gl_screenspace(PyObject *self, PyObject *args)
{
screenspace( );
Py_INCREF(Py_None);
/* void reshapeviewport */
static PyObject *
-gl_reshapeviewport(self, args)
- PyObject *self;
- PyObject *args;
+gl_reshapeviewport(PyObject *self, PyObject *args)
{
reshapeviewport( );
Py_INCREF(Py_None);
/* void winpush */
static PyObject *
-gl_winpush(self, args)
- PyObject *self;
- PyObject *args;
+gl_winpush(PyObject *self, PyObject *args)
{
winpush( );
Py_INCREF(Py_None);
/* void winpop */
static PyObject *
-gl_winpop(self, args)
- PyObject *self;
- PyObject *args;
+gl_winpop(PyObject *self, PyObject *args)
{
winpop( );
Py_INCREF(Py_None);
/* void foreground */
static PyObject *
-gl_foreground(self, args)
- PyObject *self;
- PyObject *args;
+gl_foreground(PyObject *self, PyObject *args)
{
foreground( );
Py_INCREF(Py_None);
/* void endfullscrn */
static PyObject *
-gl_endfullscrn(self, args)
- PyObject *self;
- PyObject *args;
+gl_endfullscrn(PyObject *self, PyObject *args)
{
endfullscrn( );
Py_INCREF(Py_None);
/* void endpupmode */
static PyObject *
-gl_endpupmode(self, args)
- PyObject *self;
- PyObject *args;
+gl_endpupmode(PyObject *self, PyObject *args)
{
endpupmode( );
Py_INCREF(Py_None);
/* void fullscrn */
static PyObject *
-gl_fullscrn(self, args)
- PyObject *self;
- PyObject *args;
+gl_fullscrn(PyObject *self, PyObject *args)
{
fullscrn( );
Py_INCREF(Py_None);
/* void pupmode */
static PyObject *
-gl_pupmode(self, args)
- PyObject *self;
- PyObject *args;
+gl_pupmode(PyObject *self, PyObject *args)
{
pupmode( );
Py_INCREF(Py_None);
/* void winconstraints */
static PyObject *
-gl_winconstraints(self, args)
- PyObject *self;
- PyObject *args;
+gl_winconstraints(PyObject *self, PyObject *args)
{
winconstraints( );
Py_INCREF(Py_None);
/* void pagecolor short s */
static PyObject *
-gl_pagecolor(self, args)
- PyObject *self;
- PyObject *args;
+gl_pagecolor(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void textcolor short s */
static PyObject *
-gl_textcolor(self, args)
- PyObject *self;
- PyObject *args;
+gl_textcolor(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void color short s */
static PyObject *
-gl_color(self, args)
- PyObject *self;
- PyObject *args;
+gl_color(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void curveit short s */
static PyObject *
-gl_curveit(self, args)
- PyObject *self;
- PyObject *args;
+gl_curveit(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void font short s */
static PyObject *
-gl_font(self, args)
- PyObject *self;
- PyObject *args;
+gl_font(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void linewidth short s */
static PyObject *
-gl_linewidth(self, args)
- PyObject *self;
- PyObject *args;
+gl_linewidth(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void setlinestyle short s */
static PyObject *
-gl_setlinestyle(self, args)
- PyObject *self;
- PyObject *args;
+gl_setlinestyle(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void setmap short s */
static PyObject *
-gl_setmap(self, args)
- PyObject *self;
- PyObject *args;
+gl_setmap(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void swapinterval short s */
static PyObject *
-gl_swapinterval(self, args)
- PyObject *self;
- PyObject *args;
+gl_swapinterval(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void writemask short s */
static PyObject *
-gl_writemask(self, args)
- PyObject *self;
- PyObject *args;
+gl_writemask(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void textwritemask short s */
static PyObject *
-gl_textwritemask(self, args)
- PyObject *self;
- PyObject *args;
+gl_textwritemask(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void qdevice short s */
static PyObject *
-gl_qdevice(self, args)
- PyObject *self;
- PyObject *args;
+gl_qdevice(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void unqdevice short s */
static PyObject *
-gl_unqdevice(self, args)
- PyObject *self;
- PyObject *args;
+gl_unqdevice(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void curvebasis short s */
static PyObject *
-gl_curvebasis(self, args)
- PyObject *self;
- PyObject *args;
+gl_curvebasis(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void curveprecision short s */
static PyObject *
-gl_curveprecision(self, args)
- PyObject *self;
- PyObject *args;
+gl_curveprecision(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void loadname short s */
static PyObject *
-gl_loadname(self, args)
- PyObject *self;
- PyObject *args;
+gl_loadname(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void passthrough short s */
static PyObject *
-gl_passthrough(self, args)
- PyObject *self;
- PyObject *args;
+gl_passthrough(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void pushname short s */
static PyObject *
-gl_pushname(self, args)
- PyObject *self;
- PyObject *args;
+gl_pushname(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void setmonitor short s */
static PyObject *
-gl_setmonitor(self, args)
- PyObject *self;
- PyObject *args;
+gl_setmonitor(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void setshade short s */
static PyObject *
-gl_setshade(self, args)
- PyObject *self;
- PyObject *args;
+gl_setshade(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void setpattern short s */
static PyObject *
-gl_setpattern(self, args)
- PyObject *self;
- PyObject *args;
+gl_setpattern(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void pagewritemask short s */
static PyObject *
-gl_pagewritemask(self, args)
- PyObject *self;
- PyObject *args;
+gl_pagewritemask(PyObject *self, PyObject *args)
{
short arg1 ;
if (!getishortarg(args, 1, 0, &arg1))
/* void callobj long s */
static PyObject *
-gl_callobj(self, args)
- PyObject *self;
- PyObject *args;
+gl_callobj(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void delobj long s */
static PyObject *
-gl_delobj(self, args)
- PyObject *self;
- PyObject *args;
+gl_delobj(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void editobj long s */
static PyObject *
-gl_editobj(self, args)
- PyObject *self;
- PyObject *args;
+gl_editobj(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void makeobj long s */
static PyObject *
-gl_makeobj(self, args)
- PyObject *self;
- PyObject *args;
+gl_makeobj(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void maketag long s */
static PyObject *
-gl_maketag(self, args)
- PyObject *self;
- PyObject *args;
+gl_maketag(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void chunksize long s */
static PyObject *
-gl_chunksize(self, args)
- PyObject *self;
- PyObject *args;
+gl_chunksize(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void compactify long s */
static PyObject *
-gl_compactify(self, args)
- PyObject *self;
- PyObject *args;
+gl_compactify(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void deltag long s */
static PyObject *
-gl_deltag(self, args)
- PyObject *self;
- PyObject *args;
+gl_deltag(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void lsrepeat long s */
static PyObject *
-gl_lsrepeat(self, args)
- PyObject *self;
- PyObject *args;
+gl_lsrepeat(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void objinsert long s */
static PyObject *
-gl_objinsert(self, args)
- PyObject *self;
- PyObject *args;
+gl_objinsert(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void objreplace long s */
static PyObject *
-gl_objreplace(self, args)
- PyObject *self;
- PyObject *args;
+gl_objreplace(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void winclose long s */
static PyObject *
-gl_winclose(self, args)
- PyObject *self;
- PyObject *args;
+gl_winclose(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void blanktime long s */
static PyObject *
-gl_blanktime(self, args)
- PyObject *self;
- PyObject *args;
+gl_blanktime(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void freepup long s */
static PyObject *
-gl_freepup(self, args)
- PyObject *self;
- PyObject *args;
+gl_freepup(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void backbuffer long s */
static PyObject *
-gl_backbuffer(self, args)
- PyObject *self;
- PyObject *args;
+gl_backbuffer(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void frontbuffer long s */
static PyObject *
-gl_frontbuffer(self, args)
- PyObject *self;
- PyObject *args;
+gl_frontbuffer(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void lsbackup long s */
static PyObject *
-gl_lsbackup(self, args)
- PyObject *self;
- PyObject *args;
+gl_lsbackup(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void resetls long s */
static PyObject *
-gl_resetls(self, args)
- PyObject *self;
- PyObject *args;
+gl_resetls(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void lampon long s */
static PyObject *
-gl_lampon(self, args)
- PyObject *self;
- PyObject *args;
+gl_lampon(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void lampoff long s */
static PyObject *
-gl_lampoff(self, args)
- PyObject *self;
- PyObject *args;
+gl_lampoff(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void setbell long s */
static PyObject *
-gl_setbell(self, args)
- PyObject *self;
- PyObject *args;
+gl_setbell(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void blankscreen long s */
static PyObject *
-gl_blankscreen(self, args)
- PyObject *self;
- PyObject *args;
+gl_blankscreen(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void depthcue long s */
static PyObject *
-gl_depthcue(self, args)
- PyObject *self;
- PyObject *args;
+gl_depthcue(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void zbuffer long s */
static PyObject *
-gl_zbuffer(self, args)
- PyObject *self;
- PyObject *args;
+gl_zbuffer(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void backface long s */
static PyObject *
-gl_backface(self, args)
- PyObject *self;
- PyObject *args;
+gl_backface(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void cmov2i long s long s */
static PyObject *
-gl_cmov2i(self, args)
- PyObject *self;
- PyObject *args;
+gl_cmov2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void draw2i long s long s */
static PyObject *
-gl_draw2i(self, args)
- PyObject *self;
- PyObject *args;
+gl_draw2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void move2i long s long s */
static PyObject *
-gl_move2i(self, args)
- PyObject *self;
- PyObject *args;
+gl_move2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void pnt2i long s long s */
static PyObject *
-gl_pnt2i(self, args)
- PyObject *self;
- PyObject *args;
+gl_pnt2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void patchbasis long s long s */
static PyObject *
-gl_patchbasis(self, args)
- PyObject *self;
- PyObject *args;
+gl_patchbasis(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void patchprecision long s long s */
static PyObject *
-gl_patchprecision(self, args)
- PyObject *self;
- PyObject *args;
+gl_patchprecision(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void pdr2i long s long s */
static PyObject *
-gl_pdr2i(self, args)
- PyObject *self;
- PyObject *args;
+gl_pdr2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void pmv2i long s long s */
static PyObject *
-gl_pmv2i(self, args)
- PyObject *self;
- PyObject *args;
+gl_pmv2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void rpdr2i long s long s */
static PyObject *
-gl_rpdr2i(self, args)
- PyObject *self;
- PyObject *args;
+gl_rpdr2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void rpmv2i long s long s */
static PyObject *
-gl_rpmv2i(self, args)
- PyObject *self;
- PyObject *args;
+gl_rpmv2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void xfpt2i long s long s */
static PyObject *
-gl_xfpt2i(self, args)
- PyObject *self;
- PyObject *args;
+gl_xfpt2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void objdelete long s long s */
static PyObject *
-gl_objdelete(self, args)
- PyObject *self;
- PyObject *args;
+gl_objdelete(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void patchcurves long s long s */
static PyObject *
-gl_patchcurves(self, args)
- PyObject *self;
- PyObject *args;
+gl_patchcurves(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void minsize long s long s */
static PyObject *
-gl_minsize(self, args)
- PyObject *self;
- PyObject *args;
+gl_minsize(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void maxsize long s long s */
static PyObject *
-gl_maxsize(self, args)
- PyObject *self;
- PyObject *args;
+gl_maxsize(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void keepaspect long s long s */
static PyObject *
-gl_keepaspect(self, args)
- PyObject *self;
- PyObject *args;
+gl_keepaspect(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void prefsize long s long s */
static PyObject *
-gl_prefsize(self, args)
- PyObject *self;
- PyObject *args;
+gl_prefsize(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void stepunit long s long s */
static PyObject *
-gl_stepunit(self, args)
- PyObject *self;
- PyObject *args;
+gl_stepunit(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void fudge long s long s */
static PyObject *
-gl_fudge(self, args)
- PyObject *self;
- PyObject *args;
+gl_fudge(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void winmove long s long s */
static PyObject *
-gl_winmove(self, args)
- PyObject *self;
- PyObject *args;
+gl_winmove(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void attachcursor short s short s */
static PyObject *
-gl_attachcursor(self, args)
- PyObject *self;
- PyObject *args;
+gl_attachcursor(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void deflinestyle short s short s */
static PyObject *
-gl_deflinestyle(self, args)
- PyObject *self;
- PyObject *args;
+gl_deflinestyle(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void noise short s short s */
static PyObject *
-gl_noise(self, args)
- PyObject *self;
- PyObject *args;
+gl_noise(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void picksize short s short s */
static PyObject *
-gl_picksize(self, args)
- PyObject *self;
- PyObject *args;
+gl_picksize(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void qenter short s short s */
static PyObject *
-gl_qenter(self, args)
- PyObject *self;
- PyObject *args;
+gl_qenter(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void setdepth short s short s */
static PyObject *
-gl_setdepth(self, args)
- PyObject *self;
- PyObject *args;
+gl_setdepth(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void cmov2s short s short s */
static PyObject *
-gl_cmov2s(self, args)
- PyObject *self;
- PyObject *args;
+gl_cmov2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void draw2s short s short s */
static PyObject *
-gl_draw2s(self, args)
- PyObject *self;
- PyObject *args;
+gl_draw2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void move2s short s short s */
static PyObject *
-gl_move2s(self, args)
- PyObject *self;
- PyObject *args;
+gl_move2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void pdr2s short s short s */
static PyObject *
-gl_pdr2s(self, args)
- PyObject *self;
- PyObject *args;
+gl_pdr2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void pmv2s short s short s */
static PyObject *
-gl_pmv2s(self, args)
- PyObject *self;
- PyObject *args;
+gl_pmv2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void pnt2s short s short s */
static PyObject *
-gl_pnt2s(self, args)
- PyObject *self;
- PyObject *args;
+gl_pnt2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void rdr2s short s short s */
static PyObject *
-gl_rdr2s(self, args)
- PyObject *self;
- PyObject *args;
+gl_rdr2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void rmv2s short s short s */
static PyObject *
-gl_rmv2s(self, args)
- PyObject *self;
- PyObject *args;
+gl_rmv2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void rpdr2s short s short s */
static PyObject *
-gl_rpdr2s(self, args)
- PyObject *self;
- PyObject *args;
+gl_rpdr2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void rpmv2s short s short s */
static PyObject *
-gl_rpmv2s(self, args)
- PyObject *self;
- PyObject *args;
+gl_rpmv2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void xfpt2s short s short s */
static PyObject *
-gl_xfpt2s(self, args)
- PyObject *self;
- PyObject *args;
+gl_xfpt2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void cmov2 float s float s */
static PyObject *
-gl_cmov2(self, args)
- PyObject *self;
- PyObject *args;
+gl_cmov2(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void draw2 float s float s */
static PyObject *
-gl_draw2(self, args)
- PyObject *self;
- PyObject *args;
+gl_draw2(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void move2 float s float s */
static PyObject *
-gl_move2(self, args)
- PyObject *self;
- PyObject *args;
+gl_move2(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void pnt2 float s float s */
static PyObject *
-gl_pnt2(self, args)
- PyObject *self;
- PyObject *args;
+gl_pnt2(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void pdr2 float s float s */
static PyObject *
-gl_pdr2(self, args)
- PyObject *self;
- PyObject *args;
+gl_pdr2(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void pmv2 float s float s */
static PyObject *
-gl_pmv2(self, args)
- PyObject *self;
- PyObject *args;
+gl_pmv2(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void rdr2 float s float s */
static PyObject *
-gl_rdr2(self, args)
- PyObject *self;
- PyObject *args;
+gl_rdr2(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void rmv2 float s float s */
static PyObject *
-gl_rmv2(self, args)
- PyObject *self;
- PyObject *args;
+gl_rmv2(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void rpdr2 float s float s */
static PyObject *
-gl_rpdr2(self, args)
- PyObject *self;
- PyObject *args;
+gl_rpdr2(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void rpmv2 float s float s */
static PyObject *
-gl_rpmv2(self, args)
- PyObject *self;
- PyObject *args;
+gl_rpmv2(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void xfpt2 float s float s */
static PyObject *
-gl_xfpt2(self, args)
- PyObject *self;
- PyObject *args;
+gl_xfpt2(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void loadmatrix float s[4*4] */
static PyObject *
-gl_loadmatrix(self, args)
- PyObject *self;
- PyObject *args;
+gl_loadmatrix(PyObject *self, PyObject *args)
{
float arg1 [ 4 ] [ 4 ] ;
if (!getifloatarray(args, 1, 0, 4 * 4 , (float *) arg1))
/* void multmatrix float s[4*4] */
static PyObject *
-gl_multmatrix(self, args)
- PyObject *self;
- PyObject *args;
+gl_multmatrix(PyObject *self, PyObject *args)
{
float arg1 [ 4 ] [ 4 ] ;
if (!getifloatarray(args, 1, 0, 4 * 4 , (float *) arg1))
/* void crv float s[3*4] */
static PyObject *
-gl_crv(self, args)
- PyObject *self;
- PyObject *args;
+gl_crv(PyObject *self, PyObject *args)
{
float arg1 [ 4 ] [ 3 ] ;
if (!getifloatarray(args, 1, 0, 3 * 4 , (float *) arg1))
/* void rcrv float s[4*4] */
static PyObject *
-gl_rcrv(self, args)
- PyObject *self;
- PyObject *args;
+gl_rcrv(PyObject *self, PyObject *args)
{
float arg1 [ 4 ] [ 4 ] ;
if (!getifloatarray(args, 1, 0, 4 * 4 , (float *) arg1))
/* void addtopup long s char *s long s */
static PyObject *
-gl_addtopup(self, args)
- PyObject *self;
- PyObject *args;
+gl_addtopup(PyObject *self, PyObject *args)
{
long arg1 ;
string arg2 ;
/* void charstr char *s */
static PyObject *
-gl_charstr(self, args)
- PyObject *self;
- PyObject *args;
+gl_charstr(PyObject *self, PyObject *args)
{
string arg1 ;
if (!getistringarg(args, 1, 0, &arg1))
/* void getport char *s */
static PyObject *
-gl_getport(self, args)
- PyObject *self;
- PyObject *args;
+gl_getport(PyObject *self, PyObject *args)
{
string arg1 ;
if (!getistringarg(args, 1, 0, &arg1))
/* long strwidth char *s */
static PyObject *
-gl_strwidth(self, args)
- PyObject *self;
- PyObject *args;
+gl_strwidth(PyObject *self, PyObject *args)
{
long retval;
string arg1 ;
/* long winopen char *s */
static PyObject *
-gl_winopen(self, args)
- PyObject *self;
- PyObject *args;
+gl_winopen(PyObject *self, PyObject *args)
{
long retval;
string arg1 ;
/* void wintitle char *s */
static PyObject *
-gl_wintitle(self, args)
- PyObject *self;
- PyObject *args;
+gl_wintitle(PyObject *self, PyObject *args)
{
string arg1 ;
if (!getistringarg(args, 1, 0, &arg1))
/* void polf long s float s[3*arg1] */
static PyObject *
-gl_polf(self, args)
- PyObject *self;
- PyObject *args;
+gl_polf(PyObject *self, PyObject *args)
{
long arg1 ;
float (* arg2) [ 3 ] ;
/* void polf2 long s float s[2*arg1] */
static PyObject *
-gl_polf2(self, args)
- PyObject *self;
- PyObject *args;
+gl_polf2(PyObject *self, PyObject *args)
{
long arg1 ;
float (* arg2) [ 2 ] ;
/* void poly long s float s[3*arg1] */
static PyObject *
-gl_poly(self, args)
- PyObject *self;
- PyObject *args;
+gl_poly(PyObject *self, PyObject *args)
{
long arg1 ;
float (* arg2) [ 3 ] ;
/* void poly2 long s float s[2*arg1] */
static PyObject *
-gl_poly2(self, args)
- PyObject *self;
- PyObject *args;
+gl_poly2(PyObject *self, PyObject *args)
{
long arg1 ;
float (* arg2) [ 2 ] ;
/* void crvn long s float s[3*arg1] */
static PyObject *
-gl_crvn(self, args)
- PyObject *self;
- PyObject *args;
+gl_crvn(PyObject *self, PyObject *args)
{
long arg1 ;
float (* arg2) [ 3 ] ;
/* void rcrvn long s float s[4*arg1] */
static PyObject *
-gl_rcrvn(self, args)
- PyObject *self;
- PyObject *args;
+gl_rcrvn(PyObject *self, PyObject *args)
{
long arg1 ;
float (* arg2) [ 4 ] ;
/* void polf2i long s long s[2*arg1] */
static PyObject *
-gl_polf2i(self, args)
- PyObject *self;
- PyObject *args;
+gl_polf2i(PyObject *self, PyObject *args)
{
long arg1 ;
long (* arg2) [ 2 ] ;
/* void polfi long s long s[3*arg1] */
static PyObject *
-gl_polfi(self, args)
- PyObject *self;
- PyObject *args;
+gl_polfi(PyObject *self, PyObject *args)
{
long arg1 ;
long (* arg2) [ 3 ] ;
/* void poly2i long s long s[2*arg1] */
static PyObject *
-gl_poly2i(self, args)
- PyObject *self;
- PyObject *args;
+gl_poly2i(PyObject *self, PyObject *args)
{
long arg1 ;
long (* arg2) [ 2 ] ;
/* void polyi long s long s[3*arg1] */
static PyObject *
-gl_polyi(self, args)
- PyObject *self;
- PyObject *args;
+gl_polyi(PyObject *self, PyObject *args)
{
long arg1 ;
long (* arg2) [ 3 ] ;
/* void polf2s long s short s[2*arg1] */
static PyObject *
-gl_polf2s(self, args)
- PyObject *self;
- PyObject *args;
+gl_polf2s(PyObject *self, PyObject *args)
{
long arg1 ;
short (* arg2) [ 2 ] ;
/* void polfs long s short s[3*arg1] */
static PyObject *
-gl_polfs(self, args)
- PyObject *self;
- PyObject *args;
+gl_polfs(PyObject *self, PyObject *args)
{
long arg1 ;
short (* arg2) [ 3 ] ;
/* void polys long s short s[3*arg1] */
static PyObject *
-gl_polys(self, args)
- PyObject *self;
- PyObject *args;
+gl_polys(PyObject *self, PyObject *args)
{
long arg1 ;
short (* arg2) [ 3 ] ;
/* void poly2s long s short s[2*arg1] */
static PyObject *
-gl_poly2s(self, args)
- PyObject *self;
- PyObject *args;
+gl_poly2s(PyObject *self, PyObject *args)
{
long arg1 ;
short (* arg2) [ 2 ] ;
/* void defcursor short s u_short s[128] */
static PyObject *
-gl_defcursor(self, args)
- PyObject *self;
- PyObject *args;
+gl_defcursor(PyObject *self, PyObject *args)
{
short arg1 ;
unsigned short arg2 [ 128 ] ;
/* void writepixels short s u_short s[arg1] */
static PyObject *
-gl_writepixels(self, args)
- PyObject *self;
- PyObject *args;
+gl_writepixels(PyObject *self, PyObject *args)
{
short arg1 ;
unsigned short * arg2 ;
/* void defbasis long s float s[4*4] */
static PyObject *
-gl_defbasis(self, args)
- PyObject *self;
- PyObject *args;
+gl_defbasis(PyObject *self, PyObject *args)
{
long arg1 ;
float arg2 [ 4 ] [ 4 ] ;
/* void gewrite short s short s[arg1] */
static PyObject *
-gl_gewrite(self, args)
- PyObject *self;
- PyObject *args;
+gl_gewrite(PyObject *self, PyObject *args)
{
short arg1 ;
short * arg2 ;
/* void rotate short s char s */
static PyObject *
-gl_rotate(self, args)
- PyObject *self;
- PyObject *args;
+gl_rotate(PyObject *self, PyObject *args)
{
short arg1 ;
char arg2 ;
/* void rot float s char s */
static PyObject *
-gl_rot(self, args)
- PyObject *self;
- PyObject *args;
+gl_rot(PyObject *self, PyObject *args)
{
float arg1 ;
char arg2 ;
/* void circfi long s long s long s */
static PyObject *
-gl_circfi(self, args)
- PyObject *self;
- PyObject *args;
+gl_circfi(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void circi long s long s long s */
static PyObject *
-gl_circi(self, args)
- PyObject *self;
- PyObject *args;
+gl_circi(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void cmovi long s long s long s */
static PyObject *
-gl_cmovi(self, args)
- PyObject *self;
- PyObject *args;
+gl_cmovi(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void drawi long s long s long s */
static PyObject *
-gl_drawi(self, args)
- PyObject *self;
- PyObject *args;
+gl_drawi(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void movei long s long s long s */
static PyObject *
-gl_movei(self, args)
- PyObject *self;
- PyObject *args;
+gl_movei(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void pnti long s long s long s */
static PyObject *
-gl_pnti(self, args)
- PyObject *self;
- PyObject *args;
+gl_pnti(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void newtag long s long s long s */
static PyObject *
-gl_newtag(self, args)
- PyObject *self;
- PyObject *args;
+gl_newtag(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void pdri long s long s long s */
static PyObject *
-gl_pdri(self, args)
- PyObject *self;
- PyObject *args;
+gl_pdri(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void pmvi long s long s long s */
static PyObject *
-gl_pmvi(self, args)
- PyObject *self;
- PyObject *args;
+gl_pmvi(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void rdri long s long s long s */
static PyObject *
-gl_rdri(self, args)
- PyObject *self;
- PyObject *args;
+gl_rdri(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void rmvi long s long s long s */
static PyObject *
-gl_rmvi(self, args)
- PyObject *self;
- PyObject *args;
+gl_rmvi(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void rpdri long s long s long s */
static PyObject *
-gl_rpdri(self, args)
- PyObject *self;
- PyObject *args;
+gl_rpdri(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void rpmvi long s long s long s */
static PyObject *
-gl_rpmvi(self, args)
- PyObject *self;
- PyObject *args;
+gl_rpmvi(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void xfpti long s long s long s */
static PyObject *
-gl_xfpti(self, args)
- PyObject *self;
- PyObject *args;
+gl_xfpti(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void circ float s float s float s */
static PyObject *
-gl_circ(self, args)
- PyObject *self;
- PyObject *args;
+gl_circ(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void circf float s float s float s */
static PyObject *
-gl_circf(self, args)
- PyObject *self;
- PyObject *args;
+gl_circf(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void cmov float s float s float s */
static PyObject *
-gl_cmov(self, args)
- PyObject *self;
- PyObject *args;
+gl_cmov(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void draw float s float s float s */
static PyObject *
-gl_draw(self, args)
- PyObject *self;
- PyObject *args;
+gl_draw(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void move float s float s float s */
static PyObject *
-gl_move(self, args)
- PyObject *self;
- PyObject *args;
+gl_move(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void pnt float s float s float s */
static PyObject *
-gl_pnt(self, args)
- PyObject *self;
- PyObject *args;
+gl_pnt(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void scale float s float s float s */
static PyObject *
-gl_scale(self, args)
- PyObject *self;
- PyObject *args;
+gl_scale(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void translate float s float s float s */
static PyObject *
-gl_translate(self, args)
- PyObject *self;
- PyObject *args;
+gl_translate(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void pdr float s float s float s */
static PyObject *
-gl_pdr(self, args)
- PyObject *self;
- PyObject *args;
+gl_pdr(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void pmv float s float s float s */
static PyObject *
-gl_pmv(self, args)
- PyObject *self;
- PyObject *args;
+gl_pmv(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void rdr float s float s float s */
static PyObject *
-gl_rdr(self, args)
- PyObject *self;
- PyObject *args;
+gl_rdr(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void rmv float s float s float s */
static PyObject *
-gl_rmv(self, args)
- PyObject *self;
- PyObject *args;
+gl_rmv(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void rpdr float s float s float s */
static PyObject *
-gl_rpdr(self, args)
- PyObject *self;
- PyObject *args;
+gl_rpdr(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void rpmv float s float s float s */
static PyObject *
-gl_rpmv(self, args)
- PyObject *self;
- PyObject *args;
+gl_rpmv(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void xfpt float s float s float s */
static PyObject *
-gl_xfpt(self, args)
- PyObject *self;
- PyObject *args;
+gl_xfpt(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void RGBcolor short s short s short s */
static PyObject *
-gl_RGBcolor(self, args)
- PyObject *self;
- PyObject *args;
+gl_RGBcolor(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void RGBwritemask short s short s short s */
static PyObject *
-gl_RGBwritemask(self, args)
- PyObject *self;
- PyObject *args;
+gl_RGBwritemask(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void setcursor short s short s short s */
static PyObject *
-gl_setcursor(self, args)
- PyObject *self;
- PyObject *args;
+gl_setcursor(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void tie short s short s short s */
static PyObject *
-gl_tie(self, args)
- PyObject *self;
- PyObject *args;
+gl_tie(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void circfs short s short s short s */
static PyObject *
-gl_circfs(self, args)
- PyObject *self;
- PyObject *args;
+gl_circfs(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void circs short s short s short s */
static PyObject *
-gl_circs(self, args)
- PyObject *self;
- PyObject *args;
+gl_circs(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void cmovs short s short s short s */
static PyObject *
-gl_cmovs(self, args)
- PyObject *self;
- PyObject *args;
+gl_cmovs(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void draws short s short s short s */
static PyObject *
-gl_draws(self, args)
- PyObject *self;
- PyObject *args;
+gl_draws(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void moves short s short s short s */
static PyObject *
-gl_moves(self, args)
- PyObject *self;
- PyObject *args;
+gl_moves(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void pdrs short s short s short s */
static PyObject *
-gl_pdrs(self, args)
- PyObject *self;
- PyObject *args;
+gl_pdrs(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void pmvs short s short s short s */
static PyObject *
-gl_pmvs(self, args)
- PyObject *self;
- PyObject *args;
+gl_pmvs(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void pnts short s short s short s */
static PyObject *
-gl_pnts(self, args)
- PyObject *self;
- PyObject *args;
+gl_pnts(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void rdrs short s short s short s */
static PyObject *
-gl_rdrs(self, args)
- PyObject *self;
- PyObject *args;
+gl_rdrs(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void rmvs short s short s short s */
static PyObject *
-gl_rmvs(self, args)
- PyObject *self;
- PyObject *args;
+gl_rmvs(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void rpdrs short s short s short s */
static PyObject *
-gl_rpdrs(self, args)
- PyObject *self;
- PyObject *args;
+gl_rpdrs(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void rpmvs short s short s short s */
static PyObject *
-gl_rpmvs(self, args)
- PyObject *self;
- PyObject *args;
+gl_rpmvs(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void xfpts short s short s short s */
static PyObject *
-gl_xfpts(self, args)
- PyObject *self;
- PyObject *args;
+gl_xfpts(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void curorigin short s short s short s */
static PyObject *
-gl_curorigin(self, args)
- PyObject *self;
- PyObject *args;
+gl_curorigin(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void cyclemap short s short s short s */
static PyObject *
-gl_cyclemap(self, args)
- PyObject *self;
- PyObject *args;
+gl_cyclemap(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void patch float s[4*4] float s[4*4] float s[4*4] */
static PyObject *
-gl_patch(self, args)
- PyObject *self;
- PyObject *args;
+gl_patch(PyObject *self, PyObject *args)
{
float arg1 [ 4 ] [ 4 ] ;
float arg2 [ 4 ] [ 4 ] ;
/* void splf long s float s[3*arg1] u_short s[arg1] */
static PyObject *
-gl_splf(self, args)
- PyObject *self;
- PyObject *args;
+gl_splf(PyObject *self, PyObject *args)
{
long arg1 ;
float (* arg2) [ 3 ] ;
/* void splf2 long s float s[2*arg1] u_short s[arg1] */
static PyObject *
-gl_splf2(self, args)
- PyObject *self;
- PyObject *args;
+gl_splf2(PyObject *self, PyObject *args)
{
long arg1 ;
float (* arg2) [ 2 ] ;
/* void splfi long s long s[3*arg1] u_short s[arg1] */
static PyObject *
-gl_splfi(self, args)
- PyObject *self;
- PyObject *args;
+gl_splfi(PyObject *self, PyObject *args)
{
long arg1 ;
long (* arg2) [ 3 ] ;
/* void splf2i long s long s[2*arg1] u_short s[arg1] */
static PyObject *
-gl_splf2i(self, args)
- PyObject *self;
- PyObject *args;
+gl_splf2i(PyObject *self, PyObject *args)
{
long arg1 ;
long (* arg2) [ 2 ] ;
/* void splfs long s short s[3*arg1] u_short s[arg1] */
static PyObject *
-gl_splfs(self, args)
- PyObject *self;
- PyObject *args;
+gl_splfs(PyObject *self, PyObject *args)
{
long arg1 ;
short (* arg2) [ 3 ] ;
/* void splf2s long s short s[2*arg1] u_short s[arg1] */
static PyObject *
-gl_splf2s(self, args)
- PyObject *self;
- PyObject *args;
+gl_splf2s(PyObject *self, PyObject *args)
{
long arg1 ;
short (* arg2) [ 2 ] ;
/* void rpatch float s[4*4] float s[4*4] float s[4*4] float s[4*4] */
static PyObject *
-gl_rpatch(self, args)
- PyObject *self;
- PyObject *args;
+gl_rpatch(PyObject *self, PyObject *args)
{
float arg1 [ 4 ] [ 4 ] ;
float arg2 [ 4 ] [ 4 ] ;
/* void ortho2 float s float s float s float s */
static PyObject *
-gl_ortho2(self, args)
- PyObject *self;
- PyObject *args;
+gl_ortho2(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void rect float s float s float s float s */
static PyObject *
-gl_rect(self, args)
- PyObject *self;
- PyObject *args;
+gl_rect(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void rectf float s float s float s float s */
static PyObject *
-gl_rectf(self, args)
- PyObject *self;
- PyObject *args;
+gl_rectf(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void xfpt4 float s float s float s float s */
static PyObject *
-gl_xfpt4(self, args)
- PyObject *self;
- PyObject *args;
+gl_xfpt4(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void textport short s short s short s short s */
static PyObject *
-gl_textport(self, args)
- PyObject *self;
- PyObject *args;
+gl_textport(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void mapcolor short s short s short s short s */
static PyObject *
-gl_mapcolor(self, args)
- PyObject *self;
- PyObject *args;
+gl_mapcolor(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void scrmask short s short s short s short s */
static PyObject *
-gl_scrmask(self, args)
- PyObject *self;
- PyObject *args;
+gl_scrmask(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void setvaluator short s short s short s short s */
static PyObject *
-gl_setvaluator(self, args)
- PyObject *self;
- PyObject *args;
+gl_setvaluator(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void viewport short s short s short s short s */
static PyObject *
-gl_viewport(self, args)
- PyObject *self;
- PyObject *args;
+gl_viewport(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void shaderange short s short s short s short s */
static PyObject *
-gl_shaderange(self, args)
- PyObject *self;
- PyObject *args;
+gl_shaderange(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void xfpt4s short s short s short s short s */
static PyObject *
-gl_xfpt4s(self, args)
- PyObject *self;
- PyObject *args;
+gl_xfpt4s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void rectfi long s long s long s long s */
static PyObject *
-gl_rectfi(self, args)
- PyObject *self;
- PyObject *args;
+gl_rectfi(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void recti long s long s long s long s */
static PyObject *
-gl_recti(self, args)
- PyObject *self;
- PyObject *args;
+gl_recti(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void xfpt4i long s long s long s long s */
static PyObject *
-gl_xfpt4i(self, args)
- PyObject *self;
- PyObject *args;
+gl_xfpt4i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void prefposition long s long s long s long s */
static PyObject *
-gl_prefposition(self, args)
- PyObject *self;
- PyObject *args;
+gl_prefposition(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void arc float s float s float s short s short s */
static PyObject *
-gl_arc(self, args)
- PyObject *self;
- PyObject *args;
+gl_arc(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void arcf float s float s float s short s short s */
static PyObject *
-gl_arcf(self, args)
- PyObject *self;
- PyObject *args;
+gl_arcf(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void arcfi long s long s long s short s short s */
static PyObject *
-gl_arcfi(self, args)
- PyObject *self;
- PyObject *args;
+gl_arcfi(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void arci long s long s long s short s short s */
static PyObject *
-gl_arci(self, args)
- PyObject *self;
- PyObject *args;
+gl_arci(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void bbox2 short s short s float s float s float s float s */
static PyObject *
-gl_bbox2(self, args)
- PyObject *self;
- PyObject *args;
+gl_bbox2(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void bbox2i short s short s long s long s long s long s */
static PyObject *
-gl_bbox2i(self, args)
- PyObject *self;
- PyObject *args;
+gl_bbox2i(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void bbox2s short s short s short s short s short s short s */
static PyObject *
-gl_bbox2s(self, args)
- PyObject *self;
- PyObject *args;
+gl_bbox2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void blink short s short s short s short s short s */
static PyObject *
-gl_blink(self, args)
- PyObject *self;
- PyObject *args;
+gl_blink(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void ortho float s float s float s float s float s float s */
static PyObject *
-gl_ortho(self, args)
- PyObject *self;
- PyObject *args;
+gl_ortho(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void window float s float s float s float s float s float s */
static PyObject *
-gl_window(self, args)
- PyObject *self;
- PyObject *args;
+gl_window(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void lookat float s float s float s float s float s float s short s */
static PyObject *
-gl_lookat(self, args)
- PyObject *self;
- PyObject *args;
+gl_lookat(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void perspective short s float s float s float s */
static PyObject *
-gl_perspective(self, args)
- PyObject *self;
- PyObject *args;
+gl_perspective(PyObject *self, PyObject *args)
{
short arg1 ;
float arg2 ;
/* void polarview float s short s short s short s */
static PyObject *
-gl_polarview(self, args)
- PyObject *self;
- PyObject *args;
+gl_polarview(PyObject *self, PyObject *args)
{
float arg1 ;
short arg2 ;
/* void arcfs short s short s short s short s short s */
static PyObject *
-gl_arcfs(self, args)
- PyObject *self;
- PyObject *args;
+gl_arcfs(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void arcs short s short s short s short s short s */
static PyObject *
-gl_arcs(self, args)
- PyObject *self;
- PyObject *args;
+gl_arcs(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void rectcopy short s short s short s short s short s short s */
static PyObject *
-gl_rectcopy(self, args)
- PyObject *self;
- PyObject *args;
+gl_rectcopy(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void RGBcursor short s short s short s short s short s short s short s */
static PyObject *
-gl_RGBcursor(self, args)
- PyObject *self;
- PyObject *args;
+gl_RGBcursor(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* long getbutton short s */
static PyObject *
-gl_getbutton(self, args)
- PyObject *self;
- PyObject *args;
+gl_getbutton(PyObject *self, PyObject *args)
{
long retval;
short arg1 ;
/* long getcmmode */
static PyObject *
-gl_getcmmode(self, args)
- PyObject *self;
- PyObject *args;
+gl_getcmmode(PyObject *self, PyObject *args)
{
long retval;
retval = getcmmode( );
/* long getlsbackup */
static PyObject *
-gl_getlsbackup(self, args)
- PyObject *self;
- PyObject *args;
+gl_getlsbackup(PyObject *self, PyObject *args)
{
long retval;
retval = getlsbackup( );
/* long getresetls */
static PyObject *
-gl_getresetls(self, args)
- PyObject *self;
- PyObject *args;
+gl_getresetls(PyObject *self, PyObject *args)
{
long retval;
retval = getresetls( );
/* long getdcm */
static PyObject *
-gl_getdcm(self, args)
- PyObject *self;
- PyObject *args;
+gl_getdcm(PyObject *self, PyObject *args)
{
long retval;
retval = getdcm( );
/* long getzbuffer */
static PyObject *
-gl_getzbuffer(self, args)
- PyObject *self;
- PyObject *args;
+gl_getzbuffer(PyObject *self, PyObject *args)
{
long retval;
retval = getzbuffer( );
/* long ismex */
static PyObject *
-gl_ismex(self, args)
- PyObject *self;
- PyObject *args;
+gl_ismex(PyObject *self, PyObject *args)
{
long retval;
retval = ismex( );
/* long isobj long s */
static PyObject *
-gl_isobj(self, args)
- PyObject *self;
- PyObject *args;
+gl_isobj(PyObject *self, PyObject *args)
{
long retval;
long arg1 ;
/* long isqueued short s */
static PyObject *
-gl_isqueued(self, args)
- PyObject *self;
- PyObject *args;
+gl_isqueued(PyObject *self, PyObject *args)
{
long retval;
short arg1 ;
/* long istag long s */
static PyObject *
-gl_istag(self, args)
- PyObject *self;
- PyObject *args;
+gl_istag(PyObject *self, PyObject *args)
{
long retval;
long arg1 ;
/* long genobj */
static PyObject *
-gl_genobj(self, args)
- PyObject *self;
- PyObject *args;
+gl_genobj(PyObject *self, PyObject *args)
{
long retval;
retval = genobj( );
/* long gentag */
static PyObject *
-gl_gentag(self, args)
- PyObject *self;
- PyObject *args;
+gl_gentag(PyObject *self, PyObject *args)
{
long retval;
retval = gentag( );
/* long getbuffer */
static PyObject *
-gl_getbuffer(self, args)
- PyObject *self;
- PyObject *args;
+gl_getbuffer(PyObject *self, PyObject *args)
{
long retval;
retval = getbuffer( );
/* long getcolor */
static PyObject *
-gl_getcolor(self, args)
- PyObject *self;
- PyObject *args;
+gl_getcolor(PyObject *self, PyObject *args)
{
long retval;
retval = getcolor( );
/* long getdisplaymode */
static PyObject *
-gl_getdisplaymode(self, args)
- PyObject *self;
- PyObject *args;
+gl_getdisplaymode(PyObject *self, PyObject *args)
{
long retval;
retval = getdisplaymode( );
/* long getfont */
static PyObject *
-gl_getfont(self, args)
- PyObject *self;
- PyObject *args;
+gl_getfont(PyObject *self, PyObject *args)
{
long retval;
retval = getfont( );
/* long getheight */
static PyObject *
-gl_getheight(self, args)
- PyObject *self;
- PyObject *args;
+gl_getheight(PyObject *self, PyObject *args)
{
long retval;
retval = getheight( );
/* long gethitcode */
static PyObject *
-gl_gethitcode(self, args)
- PyObject *self;
- PyObject *args;
+gl_gethitcode(PyObject *self, PyObject *args)
{
long retval;
retval = gethitcode( );
/* long getlstyle */
static PyObject *
-gl_getlstyle(self, args)
- PyObject *self;
- PyObject *args;
+gl_getlstyle(PyObject *self, PyObject *args)
{
long retval;
retval = getlstyle( );
/* long getlwidth */
static PyObject *
-gl_getlwidth(self, args)
- PyObject *self;
- PyObject *args;
+gl_getlwidth(PyObject *self, PyObject *args)
{
long retval;
retval = getlwidth( );
/* long getmap */
static PyObject *
-gl_getmap(self, args)
- PyObject *self;
- PyObject *args;
+gl_getmap(PyObject *self, PyObject *args)
{
long retval;
retval = getmap( );
/* long getplanes */
static PyObject *
-gl_getplanes(self, args)
- PyObject *self;
- PyObject *args;
+gl_getplanes(PyObject *self, PyObject *args)
{
long retval;
retval = getplanes( );
/* long getwritemask */
static PyObject *
-gl_getwritemask(self, args)
- PyObject *self;
- PyObject *args;
+gl_getwritemask(PyObject *self, PyObject *args)
{
long retval;
retval = getwritemask( );
/* long qtest */
static PyObject *
-gl_qtest(self, args)
- PyObject *self;
- PyObject *args;
+gl_qtest(PyObject *self, PyObject *args)
{
long retval;
retval = qtest( );
/* long getlsrepeat */
static PyObject *
-gl_getlsrepeat(self, args)
- PyObject *self;
- PyObject *args;
+gl_getlsrepeat(PyObject *self, PyObject *args)
{
long retval;
retval = getlsrepeat( );
/* long getmonitor */
static PyObject *
-gl_getmonitor(self, args)
- PyObject *self;
- PyObject *args;
+gl_getmonitor(PyObject *self, PyObject *args)
{
long retval;
retval = getmonitor( );
/* long getopenobj */
static PyObject *
-gl_getopenobj(self, args)
- PyObject *self;
- PyObject *args;
+gl_getopenobj(PyObject *self, PyObject *args)
{
long retval;
retval = getopenobj( );
/* long getpattern */
static PyObject *
-gl_getpattern(self, args)
- PyObject *self;
- PyObject *args;
+gl_getpattern(PyObject *self, PyObject *args)
{
long retval;
retval = getpattern( );
/* long winget */
static PyObject *
-gl_winget(self, args)
- PyObject *self;
- PyObject *args;
+gl_winget(PyObject *self, PyObject *args)
{
long retval;
retval = winget( );
/* long winattach */
static PyObject *
-gl_winattach(self, args)
- PyObject *self;
- PyObject *args;
+gl_winattach(PyObject *self, PyObject *args)
{
long retval;
retval = winattach( );
/* long getothermonitor */
static PyObject *
-gl_getothermonitor(self, args)
- PyObject *self;
- PyObject *args;
+gl_getothermonitor(PyObject *self, PyObject *args)
{
long retval;
retval = getothermonitor( );
/* long newpup */
static PyObject *
-gl_newpup(self, args)
- PyObject *self;
- PyObject *args;
+gl_newpup(PyObject *self, PyObject *args)
{
long retval;
retval = newpup( );
/* long getvaluator short s */
static PyObject *
-gl_getvaluator(self, args)
- PyObject *self;
- PyObject *args;
+gl_getvaluator(PyObject *self, PyObject *args)
{
long retval;
short arg1 ;
/* void winset long s */
static PyObject *
-gl_winset(self, args)
- PyObject *self;
- PyObject *args;
+gl_winset(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* long dopup long s */
static PyObject *
-gl_dopup(self, args)
- PyObject *self;
- PyObject *args;
+gl_dopup(PyObject *self, PyObject *args)
{
long retval;
long arg1 ;
/* void getdepth short r short r */
static PyObject *
-gl_getdepth(self, args)
- PyObject *self;
- PyObject *args;
+gl_getdepth(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void getcpos short r short r */
static PyObject *
-gl_getcpos(self, args)
- PyObject *self;
- PyObject *args;
+gl_getcpos(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void getsize long r long r */
static PyObject *
-gl_getsize(self, args)
- PyObject *self;
- PyObject *args;
+gl_getsize(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void getorigin long r long r */
static PyObject *
-gl_getorigin(self, args)
- PyObject *self;
- PyObject *args;
+gl_getorigin(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void getviewport short r short r short r short r */
static PyObject *
-gl_getviewport(self, args)
- PyObject *self;
- PyObject *args;
+gl_getviewport(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void gettp short r short r short r short r */
static PyObject *
-gl_gettp(self, args)
- PyObject *self;
- PyObject *args;
+gl_gettp(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void getgpos float r float r float r float r */
static PyObject *
-gl_getgpos(self, args)
- PyObject *self;
- PyObject *args;
+gl_getgpos(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void winposition long s long s long s long s */
static PyObject *
-gl_winposition(self, args)
- PyObject *self;
- PyObject *args;
+gl_winposition(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void gRGBcolor short r short r short r */
static PyObject *
-gl_gRGBcolor(self, args)
- PyObject *self;
- PyObject *args;
+gl_gRGBcolor(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void gRGBmask short r short r short r */
static PyObject *
-gl_gRGBmask(self, args)
- PyObject *self;
- PyObject *args;
+gl_gRGBmask(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void getscrmask short r short r short r short r */
static PyObject *
-gl_getscrmask(self, args)
- PyObject *self;
- PyObject *args;
+gl_getscrmask(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void getmcolor short s short r short r short r */
static PyObject *
-gl_getmcolor(self, args)
- PyObject *self;
- PyObject *args;
+gl_getmcolor(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void mapw long s short s short s float r float r float r float r float r float r */
static PyObject *
-gl_mapw(self, args)
- PyObject *self;
- PyObject *args;
+gl_mapw(PyObject *self, PyObject *args)
{
long arg1 ;
short arg2 ;
/* void mapw2 long s short s short s float r float r */
static PyObject *
-gl_mapw2(self, args)
- PyObject *self;
- PyObject *args;
+gl_mapw2(PyObject *self, PyObject *args)
{
long arg1 ;
short arg2 ;
/* void getcursor short r u_short r u_short r long r */
static PyObject *
-gl_getcursor(self, args)
- PyObject *self;
- PyObject *args;
+gl_getcursor(PyObject *self, PyObject *args)
{
short arg1 ;
unsigned short arg2 ;
/* void cmode */
static PyObject *
-gl_cmode(self, args)
- PyObject *self;
- PyObject *args;
+gl_cmode(PyObject *self, PyObject *args)
{
cmode( );
Py_INCREF(Py_None);
/* void concave long s */
static PyObject *
-gl_concave(self, args)
- PyObject *self;
- PyObject *args;
+gl_concave(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void curstype long s */
static PyObject *
-gl_curstype(self, args)
- PyObject *self;
- PyObject *args;
+gl_curstype(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void drawmode long s */
static PyObject *
-gl_drawmode(self, args)
- PyObject *self;
- PyObject *args;
+gl_drawmode(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void gammaramp short s[256] short s[256] short s[256] */
static PyObject *
-gl_gammaramp(self, args)
- PyObject *self;
- PyObject *args;
+gl_gammaramp(PyObject *self, PyObject *args)
{
short arg1 [ 256 ] ;
short arg2 [ 256 ] ;
/* long getbackface */
static PyObject *
-gl_getbackface(self, args)
- PyObject *self;
- PyObject *args;
+gl_getbackface(PyObject *self, PyObject *args)
{
long retval;
retval = getbackface( );
/* long getdescender */
static PyObject *
-gl_getdescender(self, args)
- PyObject *self;
- PyObject *args;
+gl_getdescender(PyObject *self, PyObject *args)
{
long retval;
retval = getdescender( );
/* long getdrawmode */
static PyObject *
-gl_getdrawmode(self, args)
- PyObject *self;
- PyObject *args;
+gl_getdrawmode(PyObject *self, PyObject *args)
{
long retval;
retval = getdrawmode( );
/* long getmmode */
static PyObject *
-gl_getmmode(self, args)
- PyObject *self;
- PyObject *args;
+gl_getmmode(PyObject *self, PyObject *args)
{
long retval;
retval = getmmode( );
/* long getsm */
static PyObject *
-gl_getsm(self, args)
- PyObject *self;
- PyObject *args;
+gl_getsm(PyObject *self, PyObject *args)
{
long retval;
retval = getsm( );
/* long getvideo long s */
static PyObject *
-gl_getvideo(self, args)
- PyObject *self;
- PyObject *args;
+gl_getvideo(PyObject *self, PyObject *args)
{
long retval;
long arg1 ;
/* void imakebackground */
static PyObject *
-gl_imakebackground(self, args)
- PyObject *self;
- PyObject *args;
+gl_imakebackground(PyObject *self, PyObject *args)
{
imakebackground( );
Py_INCREF(Py_None);
/* void lmbind short s short s */
static PyObject *
-gl_lmbind(self, args)
- PyObject *self;
- PyObject *args;
+gl_lmbind(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void lmdef long s long s long s float s[arg3] */
static PyObject *
-gl_lmdef(self, args)
- PyObject *self;
- PyObject *args;
+gl_lmdef(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void mmode long s */
static PyObject *
-gl_mmode(self, args)
- PyObject *self;
- PyObject *args;
+gl_mmode(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void normal float s[3] */
static PyObject *
-gl_normal(self, args)
- PyObject *self;
- PyObject *args;
+gl_normal(PyObject *self, PyObject *args)
{
float arg1 [ 3 ] ;
if (!getifloatarray(args, 1, 0, 3 , arg1))
/* void overlay long s */
static PyObject *
-gl_overlay(self, args)
- PyObject *self;
- PyObject *args;
+gl_overlay(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void RGBrange short s short s short s short s short s short s short s short s */
static PyObject *
-gl_RGBrange(self, args)
- PyObject *self;
- PyObject *args;
+gl_RGBrange(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void setvideo long s long s */
static PyObject *
-gl_setvideo(self, args)
- PyObject *self;
- PyObject *args;
+gl_setvideo(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void shademodel long s */
static PyObject *
-gl_shademodel(self, args)
- PyObject *self;
- PyObject *args;
+gl_shademodel(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void underlay long s */
static PyObject *
-gl_underlay(self, args)
- PyObject *self;
- PyObject *args;
+gl_underlay(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void bgnclosedline */
static PyObject *
-gl_bgnclosedline(self, args)
- PyObject *self;
- PyObject *args;
+gl_bgnclosedline(PyObject *self, PyObject *args)
{
bgnclosedline( );
Py_INCREF(Py_None);
/* void bgnline */
static PyObject *
-gl_bgnline(self, args)
- PyObject *self;
- PyObject *args;
+gl_bgnline(PyObject *self, PyObject *args)
{
bgnline( );
Py_INCREF(Py_None);
/* void bgnpoint */
static PyObject *
-gl_bgnpoint(self, args)
- PyObject *self;
- PyObject *args;
+gl_bgnpoint(PyObject *self, PyObject *args)
{
bgnpoint( );
Py_INCREF(Py_None);
/* void bgnpolygon */
static PyObject *
-gl_bgnpolygon(self, args)
- PyObject *self;
- PyObject *args;
+gl_bgnpolygon(PyObject *self, PyObject *args)
{
bgnpolygon( );
Py_INCREF(Py_None);
/* void bgnsurface */
static PyObject *
-gl_bgnsurface(self, args)
- PyObject *self;
- PyObject *args;
+gl_bgnsurface(PyObject *self, PyObject *args)
{
bgnsurface( );
Py_INCREF(Py_None);
/* void bgntmesh */
static PyObject *
-gl_bgntmesh(self, args)
- PyObject *self;
- PyObject *args;
+gl_bgntmesh(PyObject *self, PyObject *args)
{
bgntmesh( );
Py_INCREF(Py_None);
/* void bgntrim */
static PyObject *
-gl_bgntrim(self, args)
- PyObject *self;
- PyObject *args;
+gl_bgntrim(PyObject *self, PyObject *args)
{
bgntrim( );
Py_INCREF(Py_None);
/* void endclosedline */
static PyObject *
-gl_endclosedline(self, args)
- PyObject *self;
- PyObject *args;
+gl_endclosedline(PyObject *self, PyObject *args)
{
endclosedline( );
Py_INCREF(Py_None);
/* void endline */
static PyObject *
-gl_endline(self, args)
- PyObject *self;
- PyObject *args;
+gl_endline(PyObject *self, PyObject *args)
{
endline( );
Py_INCREF(Py_None);
/* void endpoint */
static PyObject *
-gl_endpoint(self, args)
- PyObject *self;
- PyObject *args;
+gl_endpoint(PyObject *self, PyObject *args)
{
endpoint( );
Py_INCREF(Py_None);
/* void endpolygon */
static PyObject *
-gl_endpolygon(self, args)
- PyObject *self;
- PyObject *args;
+gl_endpolygon(PyObject *self, PyObject *args)
{
endpolygon( );
Py_INCREF(Py_None);
/* void endsurface */
static PyObject *
-gl_endsurface(self, args)
- PyObject *self;
- PyObject *args;
+gl_endsurface(PyObject *self, PyObject *args)
{
endsurface( );
Py_INCREF(Py_None);
/* void endtmesh */
static PyObject *
-gl_endtmesh(self, args)
- PyObject *self;
- PyObject *args;
+gl_endtmesh(PyObject *self, PyObject *args)
{
endtmesh( );
Py_INCREF(Py_None);
/* void endtrim */
static PyObject *
-gl_endtrim(self, args)
- PyObject *self;
- PyObject *args;
+gl_endtrim(PyObject *self, PyObject *args)
{
endtrim( );
Py_INCREF(Py_None);
/* void blendfunction long s long s */
static PyObject *
-gl_blendfunction(self, args)
- PyObject *self;
- PyObject *args;
+gl_blendfunction(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void c3f float s[3] */
static PyObject *
-gl_c3f(self, args)
- PyObject *self;
- PyObject *args;
+gl_c3f(PyObject *self, PyObject *args)
{
float arg1 [ 3 ] ;
if (!getifloatarray(args, 1, 0, 3 , arg1))
/* void c3i long s[3] */
static PyObject *
-gl_c3i(self, args)
- PyObject *self;
- PyObject *args;
+gl_c3i(PyObject *self, PyObject *args)
{
long arg1 [ 3 ] ;
if (!getilongarray(args, 1, 0, 3 , arg1))
/* void c3s short s[3] */
static PyObject *
-gl_c3s(self, args)
- PyObject *self;
- PyObject *args;
+gl_c3s(PyObject *self, PyObject *args)
{
short arg1 [ 3 ] ;
if (!getishortarray(args, 1, 0, 3 , arg1))
/* void c4f float s[4] */
static PyObject *
-gl_c4f(self, args)
- PyObject *self;
- PyObject *args;
+gl_c4f(PyObject *self, PyObject *args)
{
float arg1 [ 4 ] ;
if (!getifloatarray(args, 1, 0, 4 , arg1))
/* void c4i long s[4] */
static PyObject *
-gl_c4i(self, args)
- PyObject *self;
- PyObject *args;
+gl_c4i(PyObject *self, PyObject *args)
{
long arg1 [ 4 ] ;
if (!getilongarray(args, 1, 0, 4 , arg1))
/* void c4s short s[4] */
static PyObject *
-gl_c4s(self, args)
- PyObject *self;
- PyObject *args;
+gl_c4s(PyObject *self, PyObject *args)
{
short arg1 [ 4 ] ;
if (!getishortarray(args, 1, 0, 4 , arg1))
/* void colorf float s */
static PyObject *
-gl_colorf(self, args)
- PyObject *self;
- PyObject *args;
+gl_colorf(PyObject *self, PyObject *args)
{
float arg1 ;
if (!getifloatarg(args, 1, 0, &arg1))
/* void cpack long s */
static PyObject *
-gl_cpack(self, args)
- PyObject *self;
- PyObject *args;
+gl_cpack(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void czclear long s long s */
static PyObject *
-gl_czclear(self, args)
- PyObject *self;
- PyObject *args;
+gl_czclear(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void dglclose long s */
static PyObject *
-gl_dglclose(self, args)
- PyObject *self;
- PyObject *args;
+gl_dglclose(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* long dglopen char *s long s */
static PyObject *
-gl_dglopen(self, args)
- PyObject *self;
- PyObject *args;
+gl_dglopen(PyObject *self, PyObject *args)
{
long retval;
string arg1 ;
/* long getgdesc long s */
static PyObject *
-gl_getgdesc(self, args)
- PyObject *self;
- PyObject *args;
+gl_getgdesc(PyObject *self, PyObject *args)
{
long retval;
long arg1 ;
/* void getnurbsproperty long s float r */
static PyObject *
-gl_getnurbsproperty(self, args)
- PyObject *self;
- PyObject *args;
+gl_getnurbsproperty(PyObject *self, PyObject *args)
{
long arg1 ;
float arg2 ;
/* void glcompat long s long s */
static PyObject *
-gl_glcompat(self, args)
- PyObject *self;
- PyObject *args;
+gl_glcompat(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void iconsize long s long s */
static PyObject *
-gl_iconsize(self, args)
- PyObject *self;
- PyObject *args;
+gl_iconsize(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void icontitle char *s */
static PyObject *
-gl_icontitle(self, args)
- PyObject *self;
- PyObject *args;
+gl_icontitle(PyObject *self, PyObject *args)
{
string arg1 ;
if (!getistringarg(args, 1, 0, &arg1))
/* void lRGBrange short s short s short s short s short s short s long s long s */
static PyObject *
-gl_lRGBrange(self, args)
- PyObject *self;
- PyObject *args;
+gl_lRGBrange(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void linesmooth long s */
static PyObject *
-gl_linesmooth(self, args)
- PyObject *self;
- PyObject *args;
+gl_linesmooth(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void lmcolor long s */
static PyObject *
-gl_lmcolor(self, args)
- PyObject *self;
- PyObject *args;
+gl_lmcolor(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void logicop long s */
static PyObject *
-gl_logicop(self, args)
- PyObject *self;
- PyObject *args;
+gl_logicop(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void lsetdepth long s long s */
static PyObject *
-gl_lsetdepth(self, args)
- PyObject *self;
- PyObject *args;
+gl_lsetdepth(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void lshaderange short s short s long s long s */
static PyObject *
-gl_lshaderange(self, args)
- PyObject *self;
- PyObject *args;
+gl_lshaderange(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void n3f float s[3] */
static PyObject *
-gl_n3f(self, args)
- PyObject *self;
- PyObject *args;
+gl_n3f(PyObject *self, PyObject *args)
{
float arg1 [ 3 ] ;
if (!getifloatarray(args, 1, 0, 3 , arg1))
/* void noborder */
static PyObject *
-gl_noborder(self, args)
- PyObject *self;
- PyObject *args;
+gl_noborder(PyObject *self, PyObject *args)
{
noborder( );
Py_INCREF(Py_None);
/* void pntsmooth long s */
static PyObject *
-gl_pntsmooth(self, args)
- PyObject *self;
- PyObject *args;
+gl_pntsmooth(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void readsource long s */
static PyObject *
-gl_readsource(self, args)
- PyObject *self;
- PyObject *args;
+gl_readsource(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void rectzoom float s float s */
static PyObject *
-gl_rectzoom(self, args)
- PyObject *self;
- PyObject *args;
+gl_rectzoom(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void sbox float s float s float s float s */
static PyObject *
-gl_sbox(self, args)
- PyObject *self;
- PyObject *args;
+gl_sbox(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void sboxi long s long s long s long s */
static PyObject *
-gl_sboxi(self, args)
- PyObject *self;
- PyObject *args;
+gl_sboxi(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void sboxs short s short s short s short s */
static PyObject *
-gl_sboxs(self, args)
- PyObject *self;
- PyObject *args;
+gl_sboxs(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void sboxf float s float s float s float s */
static PyObject *
-gl_sboxf(self, args)
- PyObject *self;
- PyObject *args;
+gl_sboxf(PyObject *self, PyObject *args)
{
float arg1 ;
float arg2 ;
/* void sboxfi long s long s long s long s */
static PyObject *
-gl_sboxfi(self, args)
- PyObject *self;
- PyObject *args;
+gl_sboxfi(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void sboxfs short s short s short s short s */
static PyObject *
-gl_sboxfs(self, args)
- PyObject *self;
- PyObject *args;
+gl_sboxfs(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
/* void setnurbsproperty long s float s */
static PyObject *
-gl_setnurbsproperty(self, args)
- PyObject *self;
- PyObject *args;
+gl_setnurbsproperty(PyObject *self, PyObject *args)
{
long arg1 ;
float arg2 ;
/* void setpup long s long s long s */
static PyObject *
-gl_setpup(self, args)
- PyObject *self;
- PyObject *args;
+gl_setpup(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* void smoothline long s */
static PyObject *
-gl_smoothline(self, args)
- PyObject *self;
- PyObject *args;
+gl_smoothline(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void subpixel long s */
static PyObject *
-gl_subpixel(self, args)
- PyObject *self;
- PyObject *args;
+gl_subpixel(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void swaptmesh */
static PyObject *
-gl_swaptmesh(self, args)
- PyObject *self;
- PyObject *args;
+gl_swaptmesh(PyObject *self, PyObject *args)
{
swaptmesh( );
Py_INCREF(Py_None);
/* long swinopen long s */
static PyObject *
-gl_swinopen(self, args)
- PyObject *self;
- PyObject *args;
+gl_swinopen(PyObject *self, PyObject *args)
{
long retval;
long arg1 ;
/* void v2f float s[2] */
static PyObject *
-gl_v2f(self, args)
- PyObject *self;
- PyObject *args;
+gl_v2f(PyObject *self, PyObject *args)
{
float arg1 [ 2 ] ;
if (!getifloatarray(args, 1, 0, 2 , arg1))
/* void v2i long s[2] */
static PyObject *
-gl_v2i(self, args)
- PyObject *self;
- PyObject *args;
+gl_v2i(PyObject *self, PyObject *args)
{
long arg1 [ 2 ] ;
if (!getilongarray(args, 1, 0, 2 , arg1))
/* void v2s short s[2] */
static PyObject *
-gl_v2s(self, args)
- PyObject *self;
- PyObject *args;
+gl_v2s(PyObject *self, PyObject *args)
{
short arg1 [ 2 ] ;
if (!getishortarray(args, 1, 0, 2 , arg1))
/* void v3f float s[3] */
static PyObject *
-gl_v3f(self, args)
- PyObject *self;
- PyObject *args;
+gl_v3f(PyObject *self, PyObject *args)
{
float arg1 [ 3 ] ;
if (!getifloatarray(args, 1, 0, 3 , arg1))
/* void v3i long s[3] */
static PyObject *
-gl_v3i(self, args)
- PyObject *self;
- PyObject *args;
+gl_v3i(PyObject *self, PyObject *args)
{
long arg1 [ 3 ] ;
if (!getilongarray(args, 1, 0, 3 , arg1))
/* void v3s short s[3] */
static PyObject *
-gl_v3s(self, args)
- PyObject *self;
- PyObject *args;
+gl_v3s(PyObject *self, PyObject *args)
{
short arg1 [ 3 ] ;
if (!getishortarray(args, 1, 0, 3 , arg1))
/* void v4f float s[4] */
static PyObject *
-gl_v4f(self, args)
- PyObject *self;
- PyObject *args;
+gl_v4f(PyObject *self, PyObject *args)
{
float arg1 [ 4 ] ;
if (!getifloatarray(args, 1, 0, 4 , arg1))
/* void v4i long s[4] */
static PyObject *
-gl_v4i(self, args)
- PyObject *self;
- PyObject *args;
+gl_v4i(PyObject *self, PyObject *args)
{
long arg1 [ 4 ] ;
if (!getilongarray(args, 1, 0, 4 , arg1))
/* void v4s short s[4] */
static PyObject *
-gl_v4s(self, args)
- PyObject *self;
- PyObject *args;
+gl_v4s(PyObject *self, PyObject *args)
{
short arg1 [ 4 ] ;
if (!getishortarray(args, 1, 0, 4 , arg1))
/* void videocmd long s */
static PyObject *
-gl_videocmd(self, args)
- PyObject *self;
- PyObject *args;
+gl_videocmd(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* long windepth long s */
static PyObject *
-gl_windepth(self, args)
- PyObject *self;
- PyObject *args;
+gl_windepth(PyObject *self, PyObject *args)
{
long retval;
long arg1 ;
/* void wmpack long s */
static PyObject *
-gl_wmpack(self, args)
- PyObject *self;
- PyObject *args;
+gl_wmpack(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void zdraw long s */
static PyObject *
-gl_zdraw(self, args)
- PyObject *self;
- PyObject *args;
+gl_zdraw(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void zfunction long s */
static PyObject *
-gl_zfunction(self, args)
- PyObject *self;
- PyObject *args;
+gl_zfunction(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void zsource long s */
static PyObject *
-gl_zsource(self, args)
- PyObject *self;
- PyObject *args;
+gl_zsource(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void zwritemask long s */
static PyObject *
-gl_zwritemask(self, args)
- PyObject *self;
- PyObject *args;
+gl_zwritemask(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
/* void v2d double s[2] */
static PyObject *
-gl_v2d(self, args)
- PyObject *self;
- PyObject *args;
+gl_v2d(PyObject *self, PyObject *args)
{
double arg1 [ 2 ] ;
if (!getidoublearray(args, 1, 0, 2 , arg1))
/* void v3d double s[3] */
static PyObject *
-gl_v3d(self, args)
- PyObject *self;
- PyObject *args;
+gl_v3d(PyObject *self, PyObject *args)
{
double arg1 [ 3 ] ;
if (!getidoublearray(args, 1, 0, 3 , arg1))
/* void v4d double s[4] */
static PyObject *
-gl_v4d(self, args)
- PyObject *self;
- PyObject *args;
+gl_v4d(PyObject *self, PyObject *args)
{
double arg1 [ 4 ] ;
if (!getidoublearray(args, 1, 0, 4 , arg1))
/* void pixmode long s long s */
static PyObject *
-gl_pixmode(self, args)
- PyObject *self;
- PyObject *args;
+gl_pixmode(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
/* long qgetfd */
static PyObject *
-gl_qgetfd(self, args)
- PyObject *self;
- PyObject *args;
+gl_qgetfd(PyObject *self, PyObject *args)
{
long retval;
retval = qgetfd( );
/* void dither long s */
static PyObject *
-gl_dither(self, args)
- PyObject *self;
- PyObject *args;
+gl_dither(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))