Add initial evas_engine header file.

Signed-off-by: Christopher Michael <cp.michael@samsung.com>

SVN revision: 83213
This commit is contained in:
Christopher Michael 2013-01-24 09:14:00 +00:00 committed by Christopher Michael
parent 1577c5913e
commit 9d1d8f4c63
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
#ifndef _EVAS_ENGINE_H
# define _EVAS_ENGINE_H
extern int _evas_engine_way_shm_log_dom;
# ifdef ERR
# undef ERR
# endif
# define ERR(...) EINA_LOG_DOM_ERR(_evas_engine_way_shm_log_dom, __VA_ARGS__)
# ifdef DBG
# undef DBG
# endif
# define DBG(...) EINA_LOG_DOM_DBG(_evas_engine_way_shm_log_dom, __VA_ARGS__)
# ifdef INF
# undef INF
# endif
# define INF(...) EINA_LOG_DOM_INFO(_evas_engine_way_shm_log_dom, __VA_ARGS__)
# ifdef WRN
# undef WRN
# endif
# define WRN(...) EINA_LOG_DOM_WARN(_evas_engine_way_shm_log_dom, __VA_ARGS__)
# ifdef CRIT
# undef CRIT
# endif
# define CRIT(...) EINA_LOG_DOM_CRIT(_evas_engine_way_shm_log_dom, __VA_ARGS__)
# include <wayland-client.h>