evas: fix win32 build warning.
authorChunEon Park <hermet@hermet.pe.kr>
Thu, 20 Aug 2015 09:09:39 +0000 (18:09 +0900)
committerChunEon Park <hermet@hermet.pe.kr>
Thu, 20 Aug 2015 09:09:39 +0000 (18:09 +0900)
include evas_private.h so that
internal ector eo apis have affected with symbol visibilty declarations.

src/modules/evas/engines/gl_generic/ector_surface.c
src/modules/evas/engines/software_generic/ector_surface.c

index 0cf2c40..01e3c5d 100644 (file)
@@ -7,6 +7,8 @@
 #include "cairo/Ector_Cairo.h"
 #include "software/Ector_Software.h"
 
+#include "evas_common_private.h"
+#include "evas_private.h"
 #include "ector_cairo_software_surface.eo.h"
 
 #define USE(Obj, Sym, Error)                            \
index 78ad596..34e957e 100644 (file)
@@ -7,8 +7,9 @@
 #include <cairo/Ector_Cairo.h>
 #include <software/Ector_Software.h>
 
-#include "ector_cairo_software_surface.eo.h"
 #include "evas_common_private.h"
+#include "evas_private.h"
+#include "ector_cairo_software_surface.eo.h"
 
 #define USE(Obj, Sym, Error)                            \
   if (!Sym) Sym = _ector_cairo_symbol_get(Obj, #Sym);   \