Removed all code that uses OpenGL from Image.
[io/quag.git] / addons / Python / source / IoPython.h
blob5407476fd1d6c9d114202862f5a2d87084b9b7d3
1 /*
2 docCopyright("Steve Dekorte", 2002)
3 docLicense("BSD revised")
4 */
6 #ifndef IOPYTHON_DEFINED
7 #define IOPYTHON_DEFINED 1
9 #include "IoObject.h"
10 #include "IoSeq.h"
11 #include "PythonData.h"
13 #define ISPYTHON(self) IoObject_hasCloneFunc_(self, (IoTagCloneFunc *)IoPython_rawClone)
15 typedef IoObject IoPython;
17 IoPython *IoPython_rawClone(IoPython *self);
18 IoPython *IoPython_proto(void *state);
19 IoPython *IoPython_new(void *state);
20 void IoPython_free(IoPython *self);
22 /* ----------------------------------------------------------- */
23 IoObject *IoPython_credits(IoPython *self, IoObject *locals, IoMessage *m);
24 IoObject *IoPython_forward(IoPython *self, IoObject *locals, IoMessage *m);
26 IoObject *IoPython_import(IoPython *self, IoObject *locals, IoMessage *m);
27 IoObject *IoPython_call(IoPython *self, IoObject *locals, IoMessage *m);
28 IoObject *IoPython_print(IoPython *self, IoObject *locals, IoMessage *m);
29 #endif