diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2010-06-26 15:35:30 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2010-06-26 15:35:30 +0000 |
commit | ed3725ddcde2a1704085c245dccec7bc11dfe311 (patch) | |
tree | 176d568862ee6f5469e61a352334f58724af2e1a /legacy/ecore/src/lib/ecore_evas/ecore_evas_wince.c | |
parent | f5d7f3ea1a9cd098b9a493b7da431f66f7151b9b (diff) |
fix returned type of callbacks
SVN revision: 49877
Diffstat (limited to '')
-rw-r--r-- | legacy/ecore/src/lib/ecore_evas/ecore_evas_wince.c | 28 |
1 files changed, 14 insertions, 14 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 d28330253f..4356581a93 100644 --- a/legacy/ecore/src/lib/ecore_evas/ecore_evas_wince.c +++ b/legacy/ecore/src/lib/ecore_evas/ecore_evas_wince.c | |||
@@ -29,19 +29,19 @@ static int _ecore_evas_init_count = 0; | |||
29 | 29 | ||
30 | static Ecore_Event_Handler *ecore_evas_event_handlers[ECORE_EVAS_EVENT_COUNT]; | 30 | static Ecore_Event_Handler *ecore_evas_event_handlers[ECORE_EVAS_EVENT_COUNT]; |
31 | 31 | ||
32 | static int _ecore_evas_wince_event_mouse_in(void *data __UNUSED__, int type __UNUSED__, void *event); | 32 | static Eina_Bool _ecore_evas_wince_event_mouse_in(void *data __UNUSED__, int type __UNUSED__, void *event); |
33 | 33 | ||
34 | static int _ecore_evas_wince_event_mouse_out(void *data __UNUSED__, int type __UNUSED__, void *event); | 34 | static Eina_Bool _ecore_evas_wince_event_mouse_out(void *data __UNUSED__, int type __UNUSED__, void *event); |
35 | 35 | ||
36 | static int _ecore_evas_wince_event_window_damage(void *data __UNUSED__, int type __UNUSED__, void *event); | 36 | static Eina_Bool _ecore_evas_wince_event_window_damage(void *data __UNUSED__, int type __UNUSED__, void *event); |
37 | 37 | ||
38 | static int _ecore_evas_wince_event_window_destroy(void *data __UNUSED__, int type __UNUSED__, void *event); | 38 | static Eina_Bool _ecore_evas_wince_event_window_destroy(void *data __UNUSED__, int type __UNUSED__, void *event); |
39 | 39 | ||
40 | static int _ecore_evas_wince_event_window_show(void *data __UNUSED__, int type __UNUSED__, void *event); | 40 | static Eina_Bool _ecore_evas_wince_event_window_show(void *data __UNUSED__, int type __UNUSED__, void *event); |
41 | 41 | ||
42 | static int _ecore_evas_wince_event_window_hide(void *data __UNUSED__, int type __UNUSED__, void *event); | 42 | static Eina_Bool _ecore_evas_wince_event_window_hide(void *data __UNUSED__, int type __UNUSED__, void *event); |
43 | 43 | ||
44 | static int _ecore_evas_wince_event_window_delete_request(void *data __UNUSED__, int type __UNUSED__, void *event); | 44 | static Eina_Bool _ecore_evas_wince_event_window_delete_request(void *data __UNUSED__, int type __UNUSED__, void *event); |
45 | 45 | ||
46 | /* Private functions */ | 46 | /* Private functions */ |
47 | 47 | ||
@@ -126,7 +126,7 @@ _ecore_evas_wince_shutdown(void) | |||
126 | return _ecore_evas_init_count; | 126 | return _ecore_evas_init_count; |
127 | } | 127 | } |
128 | 128 | ||
129 | static int | 129 | static Eina_Bool |
130 | _ecore_evas_wince_event_mouse_in(void *data __UNUSED__, int type __UNUSED__, void *event) | 130 | _ecore_evas_wince_event_mouse_in(void *data __UNUSED__, int type __UNUSED__, void *event) |
131 | { | 131 | { |
132 | Ecore_Evas *ee; | 132 | Ecore_Evas *ee; |
@@ -148,7 +148,7 @@ _ecore_evas_wince_event_mouse_in(void *data __UNUSED__, int type __UNUSED__, voi | |||
148 | return 1; | 148 | return 1; |
149 | } | 149 | } |
150 | 150 | ||
151 | static int | 151 | static Eina_Bool |
152 | _ecore_evas_wince_event_mouse_out(void *data __UNUSED__, int type __UNUSED__, void *event) | 152 | _ecore_evas_wince_event_mouse_out(void *data __UNUSED__, int type __UNUSED__, void *event) |
153 | { | 153 | { |
154 | Ecore_Evas *ee; | 154 | Ecore_Evas *ee; |
@@ -172,7 +172,7 @@ _ecore_evas_wince_event_mouse_out(void *data __UNUSED__, int type __UNUSED__, vo | |||
172 | return 1; | 172 | return 1; |
173 | } | 173 | } |
174 | 174 | ||
175 | static int | 175 | static Eina_Bool |
176 | _ecore_evas_wince_event_window_damage(void *data __UNUSED__, int type __UNUSED__, void *event) | 176 | _ecore_evas_wince_event_window_damage(void *data __UNUSED__, int type __UNUSED__, void *event) |
177 | { | 177 | { |
178 | Ecore_Evas *ee; | 178 | Ecore_Evas *ee; |
@@ -220,7 +220,7 @@ _ecore_evas_wince_event_window_damage(void *data __UNUSED__, int type __UNUSED__ | |||
220 | return 1; | 220 | return 1; |
221 | } | 221 | } |
222 | 222 | ||
223 | static int | 223 | static Eina_Bool |
224 | _ecore_evas_wince_event_window_destroy(void *data __UNUSED__, int type __UNUSED__, void *event) | 224 | _ecore_evas_wince_event_window_destroy(void *data __UNUSED__, int type __UNUSED__, void *event) |
225 | { | 225 | { |
226 | Ecore_Evas *ee; | 226 | Ecore_Evas *ee; |
@@ -238,7 +238,7 @@ _ecore_evas_wince_event_window_destroy(void *data __UNUSED__, int type __UNUSED_ | |||
238 | return 1; | 238 | return 1; |
239 | } | 239 | } |
240 | 240 | ||
241 | static int | 241 | static Eina_Bool |
242 | _ecore_evas_wince_event_window_show(void *data __UNUSED__, int type __UNUSED__, void *event) | 242 | _ecore_evas_wince_event_window_show(void *data __UNUSED__, int type __UNUSED__, void *event) |
243 | { | 243 | { |
244 | Ecore_Evas *ee; | 244 | Ecore_Evas *ee; |
@@ -257,7 +257,7 @@ _ecore_evas_wince_event_window_show(void *data __UNUSED__, int type __UNUSED__, | |||
257 | return 1; | 257 | return 1; |
258 | } | 258 | } |
259 | 259 | ||
260 | static int | 260 | static Eina_Bool |
261 | _ecore_evas_wince_event_window_hide(void *data __UNUSED__, int type __UNUSED__, void *event) | 261 | _ecore_evas_wince_event_window_hide(void *data __UNUSED__, int type __UNUSED__, void *event) |
262 | { | 262 | { |
263 | Ecore_Evas *ee; | 263 | Ecore_Evas *ee; |
@@ -276,7 +276,7 @@ _ecore_evas_wince_event_window_hide(void *data __UNUSED__, int type __UNUSED__, | |||
276 | return 1; | 276 | return 1; |
277 | } | 277 | } |
278 | 278 | ||
279 | static int | 279 | static Eina_Bool |
280 | _ecore_evas_wince_event_window_delete_request(void *data __UNUSED__, int type __UNUSED__, void *event) | 280 | _ecore_evas_wince_event_window_delete_request(void *data __UNUSED__, int type __UNUSED__, void *event) |
281 | { | 281 | { |
282 | Ecore_Evas *ee; | 282 | Ecore_Evas *ee; |