From: Emmanuele Bassi Date: Tue, 27 Mar 2007 09:38:35 +0000 (+0000) Subject: Add header and compiler guards. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1833d77594f4eb8bf9f9f1357f6bfe7eab89dd09;p=profile%2Fivi%2Fclutter.git Add header and compiler guards. --- diff --git a/ChangeLog b/ChangeLog index 3d469e8..a1e5daf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2007-03-27 Emmanuele Bassi + * clutter/cogl/cogl.h: Add header and compiler guards. + +2007-03-27 Emmanuele Bassi + * clutter/glx/clutter-stage-glx.c: Remove the check in the paint chain up: we know for sure that the parent's paint vfunc is present. diff --git a/clutter/cogl/cogl.h b/clutter/cogl/cogl.h index 40ec051..863dc63 100644 --- a/clutter/cogl/cogl.h +++ b/clutter/cogl/cogl.h @@ -23,8 +23,14 @@ * Boston, MA 02111-1307, USA. */ +#ifndef __COGL_H__ +#define __COGL_H__ + +#include #include +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__ */