From 6898d9e6b3c18c7b810312d2a15b25d85971dd6f Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 27 Mar 2007 09:38:35 +0000 Subject: [PATCH] Add header and compiler guards. --- cogl.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/cogl.h b/cogl.h index 40ec05126..863dc63af 100644 --- a/cogl.h +++ b/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__ */