X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgldecoder.h;h=39d4f6ac28c799391d99a8bfd0740a13117754aa;hb=8ddb049bf9cb06c377857ab46b7af23c140f12a7;hp=2b76b408b1468ca7e96ef68c2ebb0f19c8030a08;hpb=0cdc7b50b0e7758a1660c94be664a810504a88f4;p=gldbg.git diff --git a/source/gldecoder.h b/source/gldecoder.h index 2b76b40..39d4f6a 100644 --- a/source/gldecoder.h +++ b/source/gldecoder.h @@ -1,18 +1,27 @@ /* $Id$ This file is part of gldbg -Copyright © 2009 Mikko Rasa, Mikkosoft Productions +Copyright © 2009-2010 Mikko Rasa, Mikkosoft Productions Distributed under the GPL */ #ifndef GLDECODER_H_ #define GLDECODER_H_ -#include -#include "gldecoder.struct" +#include "opengl.h" + +#ifdef __cplusplus +extern "C" { +#endif + +#include "gensrc/gldecoder.struct" GlDecoder *gldecoder_new(void *, void (*)(void *)); void gldecoder_delete(GlDecoder *); int gldecoder_decode(GlDecoder *, const char *, unsigned); +#ifdef __cplusplus +} +#endif + #endif