diff options
author | Cedric BAIL <cedric.bail@free.fr> | 2009-03-16 16:24:43 +0000 |
---|---|---|
committer | Cedric BAIL <cedric.bail@free.fr> | 2009-03-16 16:24:43 +0000 |
commit | 57e8d73fba12050c0ae89974223d1252b3b85da5 (patch) | |
tree | e5b7b2ff0625023e05184b196c83724a35a67f28 /legacy/ecore/src/lib/ecore_evas/ecore_evas_wince.c | |
parent | f05eb71b29b052e827d330c56ac00f438726185c (diff) |
Let me introduce you to Ecore_Input. The idea is to share as much as possible event
between all ecore graphic engine to ease porting of application and reduce the amount of
specific code per engine. This patch does just that.
All your application should continu to work has previously, if it's not the case
please report any new behaviour regarding mouse and keyboard.
SVN revision: 39505
Diffstat (limited to '')
-rw-r--r-- | legacy/ecore/src/lib/ecore_evas/ecore_evas_wince.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/legacy/ecore/src/lib/ecore_evas/ecore_evas_wince.c b/legacy/ecore/src/lib/ecore_evas/ecore_evas_wince.c index a358fafb99..4fc4d24fe2 100644 --- a/legacy/ecore/src/lib/ecore_evas/ecore_evas_wince.c +++ b/legacy/ecore/src/lib/ecore_evas/ecore_evas_wince.c | |||
@@ -9,7 +9,6 @@ | |||
9 | #include <stdlib.h> /* for NULL */ | 9 | #include <stdlib.h> /* for NULL */ |
10 | 10 | ||
11 | #include "Ecore.h" | 11 | #include "Ecore.h" |
12 | #include "ecore_private.h" | ||
13 | #ifdef BUILD_ECORE_EVAS_SOFTWARE_16_WINCE | 12 | #ifdef BUILD_ECORE_EVAS_SOFTWARE_16_WINCE |
14 | # define WIN32_LEAN_AND_MEAN | 13 | # define WIN32_LEAN_AND_MEAN |
15 | # include <windows.h> | 14 | # include <windows.h> |
@@ -18,9 +17,10 @@ | |||
18 | # include "ecore_wince_private.h" | 17 | # include "ecore_wince_private.h" |
19 | #endif /* BUILD_ECORE_EVAS_SOFTWARE_16_WINCE */ | 18 | #endif /* BUILD_ECORE_EVAS_SOFTWARE_16_WINCE */ |
20 | 19 | ||
21 | #include "ecore_evas_private.h" | ||
22 | #include "Ecore_Evas.h" | 20 | #include "Ecore_Evas.h" |
23 | 21 | ||
22 | #include "ecore_private.h" | ||
23 | #include "ecore_evas_private.h" | ||
24 | 24 | ||
25 | #ifdef BUILD_ECORE_EVAS_SOFTWARE_16_WINCE | 25 | #ifdef BUILD_ECORE_EVAS_SOFTWARE_16_WINCE |
26 | 26 | ||