Add missing functions for pointer_warp and pointer_xy_get to engine

structure.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-07-08 14:02:10 +01:00
parent 0c66ca7c09
commit c04814023b
1 changed files with 2 additions and 0 deletions

View File

@ -228,6 +228,8 @@ struct _Ecore_Evas
void (*fn_state_change) (Ecore_Evas *ee);
void (*fn_msg_parent_handle) (Ecore_Evas *ee, int maj, int min, void *data, int size);
void (*fn_msg_handle) (Ecore_Evas *ee, int maj, int min, void *data, int size);
void (*fn_pointer_xy_get) (const Ecore_Evas *ee, Evas_Coord *x, Evas_Coord *y);
Eina_Bool (*fn_pointer_warp) (const Ecore_Evas *ee, Evas_Coord x, Evas_Coord y);
} func;
Ecore_Evas_Engine engine;