diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2012-12-02 22:35:45 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2012-12-02 22:35:45 +0000 |
commit | 7d6010b12c47a20e492da808e3192c3f87dab619 (patch) | |
tree | 26c6fd189e046a76560c0bc740b85f4d767ae399 /src/lib/ecore_input/ecore_input_private.h | |
parent | 53fc441d5475155965d92da89502fe4634a561b2 (diff) |
merge: add escape ecore, fix several bugs
SVN revision: 79995
Diffstat (limited to 'src/lib/ecore_input/ecore_input_private.h')
-rw-r--r-- | src/lib/ecore_input/ecore_input_private.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/lib/ecore_input/ecore_input_private.h b/src/lib/ecore_input/ecore_input_private.h new file mode 100644 index 0000000000..5660a2024a --- /dev/null +++ b/src/lib/ecore_input/ecore_input_private.h | |||
@@ -0,0 +1,37 @@ | |||
1 | #ifndef _ECORE_INPUT_PRIVATE_H | ||
2 | #define _ECORE_INPUT_PRIVATE_H | ||
3 | |||
4 | extern int _ecore_input_log_dom; | ||
5 | |||
6 | #ifdef ECORE_INPUT_DEFAULT_LOG_COLOR | ||
7 | # undef ECORE_INPUT_DEFAULT_LOG_COLOR | ||
8 | #endif | ||
9 | |||
10 | #define ECORE_INPUT_DEFAULT_LOG_COLOR EINA_COLOR_BLUE | ||
11 | |||
12 | #ifdef ERR | ||
13 | # undef ERR | ||
14 | #endif | ||
15 | #define ERR(...) EINA_LOG_DOM_ERR(_ecore_input_log_dom, __VA_ARGS__) | ||
16 | |||
17 | #ifdef DBG | ||
18 | # undef DBG | ||
19 | #endif | ||
20 | #define DBG(...) EINA_LOG_DOM_DBG(_ecore_input_log_dom, __VA_ARGS__) | ||
21 | |||
22 | #ifdef INF | ||
23 | # undef INF | ||
24 | #endif | ||
25 | #define INF(...) EINA_LOG_DOM_INFO(_ecore_input_log_dom, __VA_ARGS__) | ||
26 | |||
27 | #ifdef WRN | ||
28 | # undef WRN | ||
29 | #endif | ||
30 | #define WRN(...) EINA_LOG_DOM_WARN(_ecore_input_log_dom, __VA_ARGS__) | ||
31 | |||
32 | #ifdef CRIT | ||
33 | # undef CRIT | ||
34 | #endif | ||
35 | #define CRIT(...) EINA_LOG_DOM_CRIT(_ecore_input_log_dom, __VA_ARGS__) | ||
36 | |||
37 | #endif | ||