aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/extantz/extantz.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-05-02 08:41:33 +1000
committerDavid Walter Seikel2014-05-02 08:41:33 +1000
commit31c207cbe11e669bd2931e6cfe6e1a805a4420c8 (patch)
tree7c75e93b5db252ef8be793562620c82eb1a6320b /src/extantz/extantz.h
parentClean up globals. (diff)
downloadSledjHamr-31c207cbe11e669bd2931e6cfe6e1a805a4420c8.zip
SledjHamr-31c207cbe11e669bd2931e6cfe6e1a805a4420c8.tar.gz
SledjHamr-31c207cbe11e669bd2931e6cfe6e1a805a4420c8.tar.bz2
SledjHamr-31c207cbe11e669bd2931e6cfe6e1a805a4420c8.tar.xz
Bring extantz up to date with respect to GuiLua.
Diffstat (limited to 'src/extantz/extantz.h')
-rw-r--r--src/extantz/extantz.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/extantz/extantz.h b/src/extantz/extantz.h
index 25b78cf..9a27481 100644
--- a/src/extantz/extantz.h
+++ b/src/extantz/extantz.h
@@ -8,6 +8,7 @@
8 8
9 9
10#include "SledjHamr.h" 10#include "SledjHamr.h"
11#include "LumbrJack.h"
11#include <elm_widget_glview.h> 12#include <elm_widget_glview.h>
12#include <Evas_GL.h> 13#include <Evas_GL.h>
13#include <EPhysics.h> 14#include <EPhysics.h>
@@ -59,13 +60,15 @@ typedef struct ICameraSceneNode ICameraSceneNode;
59#endif 60#endif
60 61
61 62
62#define CRI(...) EINA_LOG_DOM_CRIT(_log_domain, _VA_ARGS__) 63typedef struct _globals
63#define ERR(...) EINA_LOG_DOM_ERR(_log_domain, __VA_ARGS__) 64{
64#define WRN(...) EINA_LOG_DOM_WARN(_log_domain, __VA_ARGS__) 65 Evas *evas;
65#define INF(...) EINA_LOG_DOM_INFO(_log_domain, __VA_ARGS__) 66 Evas_Object *win; // Our Elm window.
66#define DBG(...) EINA_LOG_DOM_DBG(_log_domain, __VA_ARGS__) 67 Eina_Clist widgets; // Our windows widgets.
68 int logDom; // Our logging domain.
69} globals;
67 70
68extern int _log_domain; 71extern globals ourGlobals;
69 72
70 73
71typedef struct _Gear Gear; 74typedef struct _Gear Gear;