diff options
author | Cedric Bail <cedric.bail@free.fr> | 2013-03-11 21:11:44 +0100 |
---|---|---|
committer | Cedric BAIL <cedric.bail@samsung.com> | 2013-03-12 15:58:43 +0900 |
commit | 32661a5ac456a4de47fb812a9ea22b4efa2c9edc (patch) | |
tree | f1ddfaefebd4887a070cdc454f918480f7b3c385 /src/lib/ecore_evas/ecore_evas.c | |
parent | 1f95cbdc7b924ab5100dd399afbbae0a1e55d109 (diff) |
ecore_evas: re-order inclusion of header to fix compilation on Windows.
It is a very tricky things to get header order right on windows. Having that
order only in .c files simplify the work a lot. So let's try to do it with
Ecore_Evas after it rewrite and split into modules.
Diffstat (limited to 'src/lib/ecore_evas/ecore_evas.c')
-rw-r--r-- | src/lib/ecore_evas/ecore_evas.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/lib/ecore_evas/ecore_evas.c b/src/lib/ecore_evas/ecore_evas.c index 15b95736f3..8635c97e64 100644 --- a/src/lib/ecore_evas/ecore_evas.c +++ b/src/lib/ecore_evas/ecore_evas.c | |||
@@ -21,12 +21,17 @@ | |||
21 | # include <Evil.h> | 21 | # include <Evil.h> |
22 | #endif | 22 | #endif |
23 | 23 | ||
24 | #include "Ecore.h" | 24 | #include <Ecore.h> |
25 | #include "ecore_private.h" | 25 | #include "ecore_private.h" |
26 | #include "Ecore_Input.h" | 26 | #include <Ecore_Input.h> |
27 | #include <Ecore_Input_Evas.h> | ||
27 | 28 | ||
28 | #include "ecore_evas_private.h" | ||
29 | #include "Ecore_Evas.h" | 29 | #include "Ecore_Evas.h" |
30 | #include "ecore_evas_private.h" | ||
31 | #include "ecore_evas_x11.h" | ||
32 | #include "ecore_evas_wayland.h" | ||
33 | #include "ecore_evas_extn.h" | ||
34 | #include "ecore_evas_win32.h" | ||
30 | 35 | ||
31 | EAPI Eina_Bool _ecore_evas_app_comp_sync = 1; | 36 | EAPI Eina_Bool _ecore_evas_app_comp_sync = 1; |
32 | EAPI int _ecore_evas_log_dom = -1; | 37 | EAPI int _ecore_evas_log_dom = -1; |