diff options
author | Kai Huuhko <kai.huuhko@gmail.com> | 2016-03-09 20:07:05 +0200 |
---|---|---|
committer | Kai Huuhko <kai.huuhko@gmail.com> | 2016-03-09 20:07:05 +0200 |
commit | 77d023dfe1fecfc980968c91bd8e170b06539e15 (patch) | |
tree | 2169cb0a10773d5ca6dd052d91e403a5a7c8c199 /include/efl.c_eo.pxd | |
parent | 05c19962dc966f4ca1d64435ad29c7f9d49ef170 (diff) |
More Eo updates
Diffstat (limited to 'include/efl.c_eo.pxd')
-rw-r--r-- | include/efl.c_eo.pxd | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/efl.c_eo.pxd b/include/efl.c_eo.pxd index 66207ab..d4906fa 100644 --- a/include/efl.c_eo.pxd +++ b/include/efl.c_eo.pxd | |||
@@ -77,20 +77,19 @@ cdef extern from "Eo.h": | |||
77 | const Eo_Event_Description *desc # The event description. */ | 77 | const Eo_Event_Description *desc # The event description. */ |
78 | void *event_info # Extra event information passed by the event caller. */ | 78 | void *event_info # Extra event information passed by the event caller. */ |
79 | ctypedef _Eo_Event Eo_Event | 79 | ctypedef _Eo_Event Eo_Event |
80 | ctypedef _Eo_Event Eo_Event2 | ||
81 | 80 | ||
82 | 81 | ||
83 | #################################################################### | 82 | #################################################################### |
84 | # Eo Events | 83 | # Eo Events |
85 | # | 84 | # |
86 | 85 | ||
87 | cdef const Eo_Event_Description *EO_EV_DEL | 86 | cdef const Eo_Event_Description *EO_BASE_EVENT_DEL |
88 | 87 | ||
89 | 88 | ||
90 | #################################################################### | 89 | #################################################################### |
91 | # Other typedefs | 90 | # Other typedefs |
92 | # | 91 | # |
93 | ctypedef Eina_Bool (*Eo_Event_Cb)(void *data, const Eo_Event2 *event) | 92 | ctypedef Eina_Bool (*Eo_Event_Cb)(void *data, const Eo_Event *event) |
94 | 93 | ||
95 | ctypedef void (*eo_key_data_free_func)(void *) | 94 | ctypedef void (*eo_key_data_free_func)(void *) |
96 | 95 | ||
@@ -101,7 +100,7 @@ cdef extern from "Eo.h": | |||
101 | int eo_init() | 100 | int eo_init() |
102 | int eo_shutdown() | 101 | int eo_shutdown() |
103 | 102 | ||
104 | Eo *eo_add(const Eo_Class *klass, Eo *parent, ...) | 103 | void eo_add(Eo **objp, const Eo_Class *klass, Eo *parent, ...) |
105 | Eo *eo_ref(const Eo *obj) | 104 | Eo *eo_ref(const Eo *obj) |
106 | void eo_unref(const Eo *obj) | 105 | void eo_unref(const Eo *obj) |
107 | int eo_ref_get(const Eo *obj) | 106 | int eo_ref_get(const Eo *obj) |