enlightenment/src/bin/e_gesture.h

18 lines
474 B
C
Raw Normal View History

2021-04-12 04:47:27 -07:00
#ifdef HAVE_ELPUT
2021-04-05 11:32:22 -07:00
#ifdef E_TYPEDEFS
typedef void (*E_Bindings_Swipe_Live_Update)(void *data, Eina_Bool end, double direction, double length, double error, unsigned int fingers);
#else
#ifndef E_GESTURES_H
#define E_GESTURES_H
E_API int e_gesture_init(void);
E_API int e_gesture_shutdown(void);
E_API void e_bindings_swipe_live_update_hook_set(E_Bindings_Swipe_Live_Update update, void *data);
E_API int e_bindings_gesture_capable_devices_get(void);
#endif
#endif
2021-04-12 04:47:27 -07:00
#endif