Add header and compiler guards.

This commit is contained in:
Emmanuele Bassi 2007-03-27 09:38:35 +00:00
parent 898f84c9c7
commit 1833d77594
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2007-03-27 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/cogl/cogl.h: Add header and compiler guards.
2007-03-27 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/glx/clutter-stage-glx.c: Remove the check in the

View File

@ -23,8 +23,14 @@
* Boston, MA 02111-1307, USA.
*/
#ifndef __COGL_H__
#define __COGL_H__
#include <glib.h>
#include <clutter/clutter.h>
G_BEGIN_DECLS
typedef void (*CoglFuncPtr) (void);
CoglFuncPtr
@ -57,3 +63,6 @@ cogl_rotatex (ClutterFixed angle, gint x, gint y, gint z);
void
cogl_rotate (gint angle, gint x, gint y, gint z);
G_END_DECLS
#endif /* __COGL_H__ */