diff options
author | Kai Huuhko <kai.huuhko@gmail.com> | 2013-10-23 14:34:42 +0300 |
---|---|---|
committer | Kai Huuhko <kai.huuhko@gmail.com> | 2013-10-23 14:34:42 +0300 |
commit | 7fbab02702bb1318a7519fd80833ad0856c33812 (patch) | |
tree | 69b2a3a876204a1237008239b2c33a69dceaaec6 /include/efl.c_eo.pxd | |
parent | cd25ef3488603bb88c108884c77df4a3c23105fc (diff) |
First attempt at integrating Eina Log with Python logging.
Has two loggers: efl and efl.eo.
To test, add handlers, formatters etc. and change levels using
normal Python logging utilities. The test messages come from
efl.eo init and class registration.
Diffstat (limited to 'include/efl.c_eo.pxd')
-rw-r--r-- | include/efl.c_eo.pxd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/efl.c_eo.pxd b/include/efl.c_eo.pxd index e313bcd..62696e1 100644 --- a/include/efl.c_eo.pxd +++ b/include/efl.c_eo.pxd | |||
@@ -72,7 +72,7 @@ cdef extern from "Eo.h": | |||
72 | const_Eo_Class *eo_class_get(const_Eo *obj) | 72 | const_Eo_Class *eo_class_get(const_Eo *obj) |
73 | const_char *eo_class_name_get(const_Eo_Class *klass) | 73 | const_char *eo_class_name_get(const_Eo_Class *klass) |
74 | 74 | ||
75 | Eo *eo_parent_get(const_Eo *obj) | 75 | Eo *eo_parent_get(Eo **obj) |
76 | 76 | ||
77 | void eo_event_callback_add(const_Eo_Event_Description *desc, Eo_Event_Cb cb, const_void *data) | 77 | void eo_event_callback_add(const_Eo_Event_Description *desc, Eo_Event_Cb cb, const_void *data) |
78 | void eo_event_callback_del(const_Eo_Event_Description *desc, Eo_Event_Cb cb, const_void *data) | 78 | void eo_event_callback_del(const_Eo_Event_Description *desc, Eo_Event_Cb cb, const_void *data) |