[CLEAN] rm comments 99/32699/1
authorVitaliy Cherepanov <v.cherepanov@samsung.com>
Mon, 22 Dec 2014 15:38:14 +0000 (18:38 +0300)
committerVitaliy Cherepanov <v.cherepanov@samsung.com>
Mon, 22 Dec 2014 15:38:14 +0000 (18:38 +0300)
Change-Id: Ic218c2b3e84e218d5fb7389d367b0b6699f6a06c
Signed-off-by: Vitaliy Cherepanov <v.cherepanov@samsung.com>
probe_event/keytouch.c

index 4daee81ff47ddbfa77fb3846e08beae8096ed4c8..1ac3d913fde45dd077fd9cd799ba67aedaacd57a 100755 (executable)
@@ -192,104 +192,3 @@ Eina_Bool ecore_event_evas_mouse_move(void *data, int type, void *event)
 
        return ecore_event_evas_mouse_movep(data, type, event);
 }
-
-
-/*
-void evas_event_feed_mouse_down(Evas *e, int b, Evas_Button_Flags flags,
-               unsigned int timestamp, const void *data)
-{
-       static void (*evas_event_feed_mouse_downp)(Evas *e, int b, Evas_Button_Flags flags, unsigned int timestamp, const void *data);
-
-       probeInfo_t     probeInfo;
-
-       GET_REAL_FUNC(evas_event_feed_mouse_down, LIBEVAS);
-
-       PRE_UNCONDITIONAL_BLOCK_BEGIN();
-       HW_EVENT_LOG(_EVENT_TOUCH, _TOUCH_PRESSED, )
-       PRE_UNCONDITIONAL_BLOCK_END();
-
-
-       DECLARE_VARIABLE_EVENT;
-       int x, y;
-
-       PRE_PROBEBLOCK_BEGIN_EVENT(evas_event_feed_mouse_down, LIBEVAS, EVENT_TYPE_DOWN);
-               evas_pointer_output_xy_get(e, &x, &y);
-       PRE_PROBEBLOCK_END_EVENT();
-
-       evas_event_feed_mouse_downp(e, b, flags, timestamp, data);
-
-       AFTER_ORIGINAL_EVENT(EVENT_TYPE_DOWN, "%d", b);
-}
-
-void evas_event_feed_mouse_up(Evas *e, int b, Evas_Button_Flags flags,
-               unsigned int timestamp, const void *data)
-{
-       static void (*evas_event_feed_mouse_upp)(Evas *e, int b, Evas_Button_Flags flags, unsigned int timestamp, const void *data);
-
-       DECLARE_VARIABLE_EVENT;
-       int x, y;
-
-       PRE_PROBEBLOCK_BEGIN_EVENT(evas_event_feed_mouse_up, LIBEVAS, EVENT_TYPE_UP);
-               evas_pointer_output_xy_get(e, &x, &y);
-       PRE_PROBEBLOCK_END_EVENT();
-
-       evas_event_feed_mouse_upp(e, b, flags, timestamp, data);
-
-       AFTER_ORIGINAL_EVENT(EVENT_TYPE_UP, "%d", b);
-}
-
-void evas_event_feed_mouse_move(Evas *e, int x, int y,
-               unsigned int timestamp, const void *data)
-{
-       static void (*evas_event_feed_mouse_movep)(Evas *e, int x, int y, unsigned int timestamp, const void *data);
-
-       BEFORE_ORIGINAL_EVENT(evas_event_feed_mouse_move, LIBEVAS, EVENT_TYPE_MOVE);
-
-       evas_event_feed_mouse_movep(e, x, y, timestamp, data);
-
-       AFTER_ORIGINAL_EVENT(EVENT_TYPE_MOVE, "%u", timestamp);
-}
-
-void evas_event_feed_multi_down(Evas *e, int d, int x, int y,
-               double rad, double radx, double rady,
-               double pres, double ang, double fx, double fy,
-               Evas_Button_Flags flags, unsigned int timestamp, const void *data)
-{
-       static void (*evas_event_feed_multi_downp)(Evas *e, int d, int x, int y, double rad, double radx, double rady, double pres, double ang, double fx, double fy, Evas_Button_Flags flags, unsigned int timestamp, const void *data);
-
-       BEFORE_ORIGINAL_EVENT(evas_event_feed_multi_down, LIBEVAS, EVENT_TYPE_DOWN);
-
-       evas_event_feed_multi_downp(e, d, x, y, rad, radx,
-                       rady, pres, ang, fx, fy, flags, timestamp, data);
-
-       AFTER_ORIGINAL_EVENT(EVENT_TYPE_DOWN, "%d", d);
-}
-
-void evas_event_feed_multi_up(Evas *e, int d, int x, int y, double rad, double radx,
-               double rady, double pres, double ang, double fx, double fy,
-               Evas_Button_Flags flags, unsigned int timestamp, const void *data)
-{
-       static void (*evas_event_feed_multi_upp)(Evas *e, int d, int x, int y, double rad, double radx, double rady, double pres, double ang, double fx, double fy, Evas_Button_Flags flags, unsigned int timestamp, const void *data);
-
-       BEFORE_ORIGINAL_EVENT(evas_event_feed_multi_up, LIBEVAS, EVENT_TYPE_UP);
-
-       evas_event_feed_multi_upp(e, d, x, y, rad, radx, rady,
-                       pres, ang, fx, fy, flags, timestamp, data);
-
-       AFTER_ORIGINAL_EVENT(EVENT_TYPE_UP, "%d", d);
-}
-
-void evas_event_feed_multi_move (Evas *e, int d, int x, int y, double rad, double radx,
-               double rady, double pres, double ang, double fx, double fy,
-               unsigned int timestamp, const void *data)
-{
-       static void (*evas_event_feed_multi_movep)(Evas *e, int d, int x, int y, double rad, double radx, double rady, double pres, double ang, double fx, double fy, unsigned int timestamp, const void *data);
-
-       BEFORE_ORIGINAL_EVENT(evas_event_feed_multi_move, LIBEVAS, EVENT_TYPE_MOVE);
-
-       evas_event_feed_multi_movep(e, d, x, y, rad, radx, rady,
-                       pres, ang, fx, fy, timestamp, data);
-
-       AFTER_ORIGINAL_EVENT(EVENT_TYPE_MOVE, "%d", d);
-}
-*/