diff options
author | Chris Michael <cp.michael@samsung.com> | 2015-09-29 10:12:41 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2015-12-03 12:02:40 -0500 |
commit | a83ba427a99b18a5ca3d276929d6e72fc632fe05 (patch) | |
tree | 92f9ca01113231ebd1f7288c256e103d81760360 /src/lib/ecore_wl2/ecore_wl2.c | |
parent | 9e8b79b43fd8c2d5289caf14caf4e96d4224d170 (diff) |
ecore-wl2: Add event structure and event type for selection data ready
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 e8c2d178fb..81ea677672 100644 --- a/src/lib/ecore_wl2/ecore_wl2.c +++ b/src/lib/ecore_wl2/ecore_wl2.c | |||
@@ -23,6 +23,7 @@ EAPI int ECORE_WL2_EVENT_DND_END = 0; | |||
23 | EAPI int ECORE_WL2_EVENT_DATA_SOURCE_CANCELLED = 0; | 23 | EAPI int ECORE_WL2_EVENT_DATA_SOURCE_CANCELLED = 0; |
24 | EAPI int ECORE_WL2_EVENT_DATA_SOURCE_TARGET = 0; | 24 | EAPI int ECORE_WL2_EVENT_DATA_SOURCE_TARGET = 0; |
25 | EAPI int ECORE_WL2_EVENT_DATA_SOURCE_SEND = 0; | 25 | EAPI int ECORE_WL2_EVENT_DATA_SOURCE_SEND = 0; |
26 | EAPI int ECORE_WL2_EVENT_SELECTION_DATA_READY = 0; | ||
26 | 27 | ||
27 | static void | 28 | static void |
28 | _cb_wl_log_print(const char *format, va_list args) | 29 | _cb_wl_log_print(const char *format, va_list args) |
@@ -77,6 +78,7 @@ ecore_wl2_init(void) | |||
77 | ECORE_WL2_EVENT_DATA_SOURCE_CANCELLED = ecore_event_type_new(); | 78 | 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_TARGET = ecore_event_type_new(); |
79 | ECORE_WL2_EVENT_DATA_SOURCE_SEND = ecore_event_type_new(); | 80 | ECORE_WL2_EVENT_DATA_SOURCE_SEND = ecore_event_type_new(); |
81 | ECORE_WL2_EVENT_SELECTION_DATA_READY = ecore_event_type_new(); | ||
80 | } | 82 | } |
81 | 83 | ||
82 | wl_log_set_handler_server(_cb_wl_log_print); | 84 | wl_log_set_handler_server(_cb_wl_log_print); |