diff options
author | Chris Michael <cp.michael@samsung.com> | 2015-09-30 12:03:50 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2015-12-03 12:02:40 -0500 |
commit | bb0f3ab62a3f8cda4405ab53eff8a37e8038db8e (patch) | |
tree | 8ca72c0dde00f71e8cfca8ef5104b7b5c5cb3ea7 /src/lib/ecore_wl2/ecore_wl2.c | |
parent | 324a7e545a6efc4450b6987d725727664a967aeb (diff) |
ecore-wl2: Create new event type for window configure
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 | 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 81ea677672..8be64de535 100644 --- a/src/lib/ecore_wl2/ecore_wl2.c +++ b/src/lib/ecore_wl2/ecore_wl2.c | |||
@@ -24,6 +24,7 @@ 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 | EAPI int ECORE_WL2_EVENT_SELECTION_DATA_READY = 0; |
27 | EAPI int ECORE_WL2_EVENT_WINDOW_CONFIGURE = 0; | ||
27 | 28 | ||
28 | static void | 29 | static void |
29 | _cb_wl_log_print(const char *format, va_list args) | 30 | _cb_wl_log_print(const char *format, va_list args) |
@@ -79,6 +80,7 @@ ecore_wl2_init(void) | |||
79 | ECORE_WL2_EVENT_DATA_SOURCE_TARGET = ecore_event_type_new(); | 80 | ECORE_WL2_EVENT_DATA_SOURCE_TARGET = ecore_event_type_new(); |
80 | ECORE_WL2_EVENT_DATA_SOURCE_SEND = ecore_event_type_new(); | 81 | ECORE_WL2_EVENT_DATA_SOURCE_SEND = ecore_event_type_new(); |
81 | ECORE_WL2_EVENT_SELECTION_DATA_READY = ecore_event_type_new(); | 82 | ECORE_WL2_EVENT_SELECTION_DATA_READY = ecore_event_type_new(); |
83 | ECORE_WL2_EVENT_WINDOW_CONFIGURE = ecore_event_type_new(); | ||
82 | } | 84 | } |
83 | 85 | ||
84 | wl_log_set_handler_server(_cb_wl_log_print); | 86 | wl_log_set_handler_server(_cb_wl_log_print); |