diff options
author | Cedric BAIL <cedric.bail@free.fr> | 2009-12-21 17:32:19 +0000 |
---|---|---|
committer | Cedric BAIL <cedric.bail@free.fr> | 2009-12-21 17:32:19 +0000 |
commit | d8e18953501c8bed701d66d0acdd4153b1122206 (patch) | |
tree | c75a2f4ce26f4861de6ce956866f8973f2d3a1f0 /legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h | |
parent | 2410d1f00a95ee235dc7dbf185e89dcd11c9060c (diff) |
* ecore: Use eina_log.
Patch from Mathieu Taillefumier.
SVN revision: 44637
Diffstat (limited to 'legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h')
-rw-r--r-- | legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h b/legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h index 123757c82f..20e8bf46f6 100644 --- a/legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h +++ b/legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h | |||
@@ -3,6 +3,32 @@ | |||
3 | 3 | ||
4 | #define ECORE_MAGIC_CONTEXT 0x56c1b39a | 4 | #define ECORE_MAGIC_CONTEXT 0x56c1b39a |
5 | 5 | ||
6 | extern int _ecore_imf_log_dom; | ||
7 | #ifdef ERR | ||
8 | # undef ERR | ||
9 | #endif | ||
10 | #define ERR(...) EINA_LOG_DOM_ERR(_ecore_imf_log_dom, __VA_ARGS__) | ||
11 | |||
12 | #ifdef DBG | ||
13 | # undef DBG | ||
14 | #endif | ||
15 | #define DBG(...) EINA_LOG_DOM_DBG(_ecore_imf_log_dom, __VA_ARGS__) | ||
16 | |||
17 | #ifdef INF | ||
18 | # undef INF | ||
19 | #endif | ||
20 | #define INF(...) EINA_LOG_DOM_INFO(_ecore_imf_log_dom, __VA_ARGS__) | ||
21 | |||
22 | #ifdef WRN | ||
23 | # undef WRN | ||
24 | #endif | ||
25 | #define WRN(...) EINA_LOG_DOM_WARN(_ecore_imf_log_dom, __VA_ARGS__) | ||
26 | |||
27 | #ifdef CRIT | ||
28 | # undef CRIT | ||
29 | #endif | ||
30 | #define CRIT(...) EINA_LOG_DOM_CRIT(_ecore_imf_log_dom, __VA_ARGS__) | ||
31 | |||
6 | typedef struct _Ecore_IMF_Module Ecore_IMF_Module; | 32 | typedef struct _Ecore_IMF_Module Ecore_IMF_Module; |
7 | 33 | ||
8 | struct _Ecore_IMF_Context | 34 | struct _Ecore_IMF_Context |