diff options
author | Chris Michael <cp.michael@samsung.com> | 2015-09-29 10:06:50 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2015-12-03 12:02:40 -0500 |
commit | 9e8b79b43fd8c2d5289caf14caf4e96d4224d170 (patch) | |
tree | 960ef318dcf7be6e3c93f053ca467f70aa2cf25a /src/lib/ecore_wl2/ecore_wl2.c | |
parent | 199d762e570208ccf231fc083d9299b8f5711ad2 (diff) |
ecore-wl2: Add remaining events and event structures for data source
(dnd)
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to 'src/lib/ecore_wl2/ecore_wl2.c')
-rw-r--r-- | src/lib/ecore_wl2/ecore_wl2.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/ecore_wl2/ecore_wl2.c b/src/lib/ecore_wl2/ecore_wl2.c index 0b8f696a45..e8c2d178fb 100644 --- a/src/lib/ecore_wl2/ecore_wl2.c +++ b/src/lib/ecore_wl2/ecore_wl2.c | |||
@@ -20,6 +20,9 @@ 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 | EAPI int ECORE_WL2_EVENT_DND_END = 0; |
23 | EAPI int ECORE_WL2_EVENT_DATA_SOURCE_CANCELLED = 0; | ||
24 | EAPI int ECORE_WL2_EVENT_DATA_SOURCE_TARGET = 0; | ||
25 | EAPI int ECORE_WL2_EVENT_DATA_SOURCE_SEND = 0; | ||
23 | 26 | ||
24 | static void | 27 | static void |
25 | _cb_wl_log_print(const char *format, va_list args) | 28 | _cb_wl_log_print(const char *format, va_list args) |
@@ -71,6 +74,9 @@ ecore_wl2_init(void) | |||
71 | ECORE_WL2_EVENT_DND_MOTION = ecore_event_type_new(); | 74 | ECORE_WL2_EVENT_DND_MOTION = ecore_event_type_new(); |
72 | ECORE_WL2_EVENT_DND_DROP = ecore_event_type_new(); | 75 | ECORE_WL2_EVENT_DND_DROP = ecore_event_type_new(); |
73 | ECORE_WL2_EVENT_DND_END = ecore_event_type_new(); | 76 | ECORE_WL2_EVENT_DND_END = ecore_event_type_new(); |
77 | ECORE_WL2_EVENT_DATA_SOURCE_CANCELLED = ecore_event_type_new(); | ||
78 | ECORE_WL2_EVENT_DATA_SOURCE_TARGET = ecore_event_type_new(); | ||
79 | ECORE_WL2_EVENT_DATA_SOURCE_SEND = ecore_event_type_new(); | ||
74 | } | 80 | } |
75 | 81 | ||
76 | wl_log_set_handler_server(_cb_wl_log_print); | 82 | wl_log_set_handler_server(_cb_wl_log_print); |