]> git.tdb.fi Git - gldbg.git/blob - source/gldecoder.h
Rewrite the Makefile to have proper dependencies and stuff
[gldbg.git] / source / gldecoder.h
1 /* $Id$
2
3 This file is part of gldbg
4 Copyright © 2009  Mikko Rasa, Mikkosoft Productions
5 Distributed under the GPL
6 */
7
8 #ifndef GLDECODER_H_
9 #define GLDECODER_H_
10
11 #include <GL/gl.h>
12 #include <GL/glx.h>
13
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17
18 #include "gensrc/gldecoder.struct"
19
20 GlDecoder *gldecoder_new(void *, void (*)(void *));
21 void gldecoder_delete(GlDecoder *);
22 int gldecoder_decode(GlDecoder *, const char *, unsigned);
23
24 #ifdef __cplusplus
25 }
26 #endif
27
28 #endif