diff options
author | Chris Michael <cp.michael@samsung.com> | 2015-09-29 09:56:53 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2015-12-03 12:02:40 -0500 |
commit | 199d762e570208ccf231fc083d9299b8f5711ad2 (patch) | |
tree | c697aa2a1c74e580137a1eb8e915773ea7b21874 /src/lib/ecore_wl2/ecore_wl2.c | |
parent | cd1d9ec196d3d7b1be2882d6974cef9f9a449f59 (diff) |
ecore-wl2: Add event structure for dnd end event
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_wl2/ecore_wl2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/ecore_wl2/ecore_wl2.c b/src/lib/ecore_wl2/ecore_wl2.c index 06dd669562..0b8f696a45 100644 --- a/src/lib/ecore_wl2/ecore_wl2.c +++ b/src/lib/ecore_wl2/ecore_wl2.c | |||
@@ -19,6 +19,7 @@ EAPI int ECORE_WL2_EVENT_DND_ENTER = 0; | |||
19 | EAPI int ECORE_WL2_EVENT_DND_LEAVE = 0; | 19 | EAPI int ECORE_WL2_EVENT_DND_LEAVE = 0; |
20 | EAPI int ECORE_WL2_EVENT_DND_MOTION = 0; | 20 | EAPI int ECORE_WL2_EVENT_DND_MOTION = 0; |
21 | EAPI int ECORE_WL2_EVENT_DND_DROP = 0; | 21 | EAPI int ECORE_WL2_EVENT_DND_DROP = 0; |
22 | EAPI int ECORE_WL2_EVENT_DND_END = 0; | ||
22 | 23 | ||
23 | static void | 24 | static void |
24 | _cb_wl_log_print(const char *format, va_list args) | 25 | _cb_wl_log_print(const char *format, va_list args) |
@@ -69,6 +70,7 @@ ecore_wl2_init(void) | |||
69 | ECORE_WL2_EVENT_DND_LEAVE = ecore_event_type_new(); | 70 | ECORE_WL2_EVENT_DND_LEAVE = ecore_event_type_new(); |
70 | ECORE_WL2_EVENT_DND_MOTION = ecore_event_type_new(); | 71 | ECORE_WL2_EVENT_DND_MOTION = ecore_event_type_new(); |
71 | ECORE_WL2_EVENT_DND_DROP = ecore_event_type_new(); | 72 | ECORE_WL2_EVENT_DND_DROP = ecore_event_type_new(); |
73 | ECORE_WL2_EVENT_DND_END = ecore_event_type_new(); | ||
72 | } | 74 | } |
73 | 75 | ||
74 | wl_log_set_handler_server(_cb_wl_log_print); | 76 | wl_log_set_handler_server(_cb_wl_log_print); |