aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/ecore/src/lib/ecore_sdl/ecore_sdl_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/ecore/src/lib/ecore_sdl/ecore_sdl_private.h')
-rw-r--r--libraries/ecore/src/lib/ecore_sdl/ecore_sdl_private.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/libraries/ecore/src/lib/ecore_sdl/ecore_sdl_private.h b/libraries/ecore/src/lib/ecore_sdl/ecore_sdl_private.h
deleted file mode 100644
index 37e9570..0000000
--- a/libraries/ecore/src/lib/ecore_sdl/ecore_sdl_private.h
+++ /dev/null
@@ -1,36 +0,0 @@
1#ifndef _ECORE_SDL_PRIVATE_H
2# define _ECORE_SDL_PRIVATE_H
3
4extern int _ecore_sdl_log_dom;
5
6# ifdef ECORE_SDL_DEFAULT_LOG_COLOR
7# undef ECORE_SDL_DEFAULT_LOG_COLOR
8# endif
9# define ECORE_SDL_DEFAULT_LOG_COLOR EINA_COLOR_BLUE
10
11# ifdef ERR
12# undef ERR
13# endif
14# define ERR(...) EINA_LOG_DOM_ERR(_ecore_sdl_log_dom, __VA_ARGS__)
15
16# ifdef DBG
17# undef DBG
18# endif
19# define DBG(...) EINA_LOG_DOM_DBG(_ecore_sdl_log_dom, __VA_ARGS__)
20
21# ifdef INF
22# undef INF
23# endif
24# define INF(...) EINA_LOG_DOM_INFO(_ecore_sdl_log_dom, __VA_ARGS__)
25
26# ifdef WRN
27# undef WRN
28# endif
29# define WRN(...) EINA_LOG_DOM_WARN(_ecore_sdl_log_dom, __VA_ARGS__)
30
31# ifdef CRIT
32# undef CRIT
33# endif
34# define CRIT(...) EINA_LOG_DOM_CRIT(_ecore_sdl_log_dom, __VA_ARGS__)
35
36#endif