diff options
author | Rafael Antognolli <antognolli@gmail.com> | 2011-11-24 21:08:22 +0000 |
---|---|---|
committer | Rafael Antognolli <antognolli@gmail.com> | 2011-11-24 21:08:22 +0000 |
commit | e8060b3cd6815454daa74b43714f8bb237e8c985 (patch) | |
tree | 51bebcb3311ebe8e1e19bf60be41c14b6145e7d0 /legacy/ecore/src/lib/ecore_fb/Ecore_Fb.h | |
parent | f21568bcb5a4843d4fecec2737f5f3a44a32d892 (diff) |
ecore/fb: Bring back the old signature of ecore_fb_input_device_open.
A previous patch had changed its signature, but since this is an EAPI,
we can't break it. Now ecore_fb_input_device_window_set() was added to
provide the same functionality.
SVN revision: 65589
Diffstat (limited to '')
-rw-r--r-- | legacy/ecore/src/lib/ecore_fb/Ecore_Fb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/legacy/ecore/src/lib/ecore_fb/Ecore_Fb.h b/legacy/ecore/src/lib/ecore_fb/Ecore_Fb.h index 37b9e1e6cd..069cccdff9 100644 --- a/legacy/ecore/src/lib/ecore_fb/Ecore_Fb.h +++ b/legacy/ecore/src/lib/ecore_fb/Ecore_Fb.h | |||
@@ -70,7 +70,7 @@ EAPI void ecore_fb_callback_gain_set(void (*func) (void *da | |||
70 | EAPI void ecore_fb_callback_lose_set(void (*func) (void *data), void *data); | 70 | EAPI void ecore_fb_callback_lose_set(void (*func) (void *data), void *data); |
71 | 71 | ||
72 | /* ecore_fb_li.c */ | 72 | /* ecore_fb_li.c */ |
73 | EAPI Ecore_Fb_Input_Device *ecore_fb_input_device_open(void *window, const char *dev); | 73 | EAPI Ecore_Fb_Input_Device *ecore_fb_input_device_open(const char *dev); |
74 | EAPI void ecore_fb_input_device_close(Ecore_Fb_Input_Device *dev); | 74 | EAPI void ecore_fb_input_device_close(Ecore_Fb_Input_Device *dev); |
75 | EAPI void ecore_fb_input_device_listen(Ecore_Fb_Input_Device *dev, Eina_Bool listen); | 75 | EAPI void ecore_fb_input_device_listen(Ecore_Fb_Input_Device *dev, Eina_Bool listen); |
76 | EAPI const char *ecore_fb_input_device_name_get(Ecore_Fb_Input_Device *dev); | 76 | EAPI const char *ecore_fb_input_device_name_get(Ecore_Fb_Input_Device *dev); |
@@ -78,6 +78,7 @@ EAPI Ecore_Fb_Input_Device_Cap ecore_fb_input_device_cap_get(Ecore_Fb_Input_Devi | |||
78 | EAPI void ecore_fb_input_device_axis_size_set(Ecore_Fb_Input_Device *dev, int w, int h); | 78 | EAPI void ecore_fb_input_device_axis_size_set(Ecore_Fb_Input_Device *dev, int w, int h); |
79 | EAPI void ecore_fb_input_threshold_click_set(Ecore_Fb_Input_Device *dev, double threshold); | 79 | EAPI void ecore_fb_input_threshold_click_set(Ecore_Fb_Input_Device *dev, double threshold); |
80 | EAPI double ecore_fb_input_threshold_click_get(Ecore_Fb_Input_Device *dev); | 80 | EAPI double ecore_fb_input_threshold_click_get(Ecore_Fb_Input_Device *dev); |
81 | EAPI void ecore_fb_input_device_window_set(Ecore_Fb_Input_Device *dev, void *window); | ||
81 | 82 | ||
82 | /* ecore_fb.c */ | 83 | /* ecore_fb.c */ |
83 | 84 | ||