diff options
author | Dave Andreoli <dave@gurumeditation.it> | 2016-06-26 15:54:36 +0200 |
---|---|---|
committer | Dave Andreoli <dave@gurumeditation.it> | 2016-06-26 15:54:36 +0200 |
commit | be3069b28011e8cce228342e2daff83162e10220 (patch) | |
tree | b3e65c0a66c39fdadffe00243f3ead0a3142028b /include/efl.c_eo.pxd | |
parent | 36ca39e015c5fdb8a0f63382a52ab479134bbd6f (diff) |
Update to new Eo callback stop mechanism
#FollowTheWhiteRabbit (tm)
Diffstat (limited to 'include/efl.c_eo.pxd')
-rw-r--r-- | include/efl.c_eo.pxd | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/efl.c_eo.pxd b/include/efl.c_eo.pxd index a21cfd3..02f0b99 100644 --- a/include/efl.c_eo.pxd +++ b/include/efl.c_eo.pxd | |||
@@ -54,9 +54,6 @@ cdef extern from "Eo.h": | |||
54 | EO_CALLBACK_PRIORITY_DEFAULT | 54 | EO_CALLBACK_PRIORITY_DEFAULT |
55 | EO_CALLBACK_PRIORITY_AFTER | 55 | EO_CALLBACK_PRIORITY_AFTER |
56 | 56 | ||
57 | cdef enum: | ||
58 | EO_CALLBACK_STOP | ||
59 | EO_CALLBACK_CONTINUE | ||
60 | 57 | ||
61 | #################################################################### | 58 | #################################################################### |
62 | # Structures | 59 | # Structures |
@@ -89,7 +86,7 @@ cdef extern from "Eo.h": | |||
89 | #################################################################### | 86 | #################################################################### |
90 | # Other typedefs | 87 | # Other typedefs |
91 | # | 88 | # |
92 | ctypedef Eina_Bool (*Eo_Event_Cb)(void *data, const Eo_Event *event) | 89 | ctypedef void (*Eo_Event_Cb)(void *data, const Eo_Event *event) |
93 | 90 | ||
94 | ctypedef void (*eo_key_data_free_func)(void *) | 91 | ctypedef void (*eo_key_data_free_func)(void *) |
95 | 92 | ||
@@ -119,6 +116,7 @@ cdef extern from "Eo.h": | |||
119 | void eo_parent_set(Eo *obj, Eo *parent) | 116 | void eo_parent_set(Eo *obj, Eo *parent) |
120 | Eo *eo_parent_get(const Eo *obj) | 117 | Eo *eo_parent_get(const Eo *obj) |
121 | 118 | ||
119 | void eo_event_callback_stop(Eo *obj) | ||
122 | void eo_event_callback_forwarder_add(Eo *obj, const Eo_Event_Description *desc, Eo *new_obj) | 120 | void eo_event_callback_forwarder_add(Eo *obj, const Eo_Event_Description *desc, Eo *new_obj) |
123 | void eo_event_callback_forwarder_del(Eo *obj, const Eo_Event_Description *desc, Eo *new_obj) | 121 | void eo_event_callback_forwarder_del(Eo *obj, const Eo_Event_Description *desc, Eo *new_obj) |
124 | 122 | ||