]> git.tdb.fi Git - gldbg.git/blob - source/gldecoder.struct.t
Replace per-file license notices with License.txt
[gldbg.git] / source / gldecoder.struct.t
1 :typedef struct sGlDecoder
2 :{
3 :       void *user_data;
4 :       void (*destroy)(void *);
5 w('     void (*%s)(void *', func.name)
6 if ret.ctype!="void":
7         w(', %s', ret.ctype)
8 for p in params:
9         w(', %s', p.ctype)
10 wl(');')
11 :       void (*gldError)(void *, GLenum);
12 :       void (*gldBreak)(void *, unsigned short, unsigned char);
13 :       void (*unhandled)(void *, unsigned short);
14 :} GlDecoder;