X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgl.h;h=f7cba6b7aeaa098ff9ff6811c63cff6fa583ef4a;hb=3b159edbe4e80a2bc19c4c2fcd42cb996b9fbfe0;hp=c033a377aa7a1bd11ed75294fc3f67ae633b6f49;hpb=a4ec5410595ddf37bfbc0e85ad87d31a9cbf94f1;p=libs%2Fgl.git diff --git a/source/gl.h b/source/gl.h index c033a377..f7cba6b7 100644 --- a/source/gl.h +++ b/source/gl.h @@ -1,16 +1,25 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef MSP_GL_GL_H_ #define MSP_GL_GL_H_ +#ifdef __APPLE__ +#define extern extern __attribute__((weak_import)) +#include +#include +#undef extern +#elif defined(__ANDROID__) +#include +#include +typedef double GLdouble; +#else #ifdef WIN32 #include #endif #include +#include +#endif + +#ifndef APIENTRY +#define APIENTRY +#endif #endif