aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ClientHamr/GuiLua/GuiLua.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-04-16 20:57:20 +1000
committerDavid Walter Seikel2014-04-16 20:57:20 +1000
commitff7a21e30c8483f5614dc793e3caecb5e3b89d02 (patch)
treebbb2f17ce12565e37b2206f5cf0a9938f399fd0f /ClientHamr/GuiLua/GuiLua.h
parentMinor clean ups. (diff)
downloadSledjHamr-ff7a21e30c8483f5614dc793e3caecb5e3b89d02.zip
SledjHamr-ff7a21e30c8483f5614dc793e3caecb5e3b89d02.tar.gz
SledjHamr-ff7a21e30c8483f5614dc793e3caecb5e3b89d02.tar.bz2
SledjHamr-ff7a21e30c8483f5614dc793e3caecb5e3b89d02.tar.xz
Convert GuiLua and skang to Elementary.
Diffstat (limited to 'ClientHamr/GuiLua/GuiLua.h')
-rw-r--r--ClientHamr/GuiLua/GuiLua.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/ClientHamr/GuiLua/GuiLua.h b/ClientHamr/GuiLua/GuiLua.h
index 127841f..6debac5 100644
--- a/ClientHamr/GuiLua/GuiLua.h
+++ b/ClientHamr/GuiLua/GuiLua.h
@@ -1,11 +1,9 @@
1 1
2#include <Eet.h>
3#include <Ecore.h>
4#include <Ecore_Evas.h>
5#include <Edje.h>
6#include <stdio.h> 2#include <stdio.h>
7#include <ctype.h> 3#include <ctype.h>
8 4
5#include <Elementary.h>
6
9#include <lua.h> 7#include <lua.h>
10#include <luajit.h> 8#include <luajit.h>
11#include <lualib.h> 9#include <lualib.h>
@@ -47,11 +45,9 @@ typedef enum
47 45
48struct _globals 46struct _globals
49{ 47{
50 Ecore_Evas *ee; // Our window. 48 Evas_Object *win; // Our Elm window.
51 Evas *canvas; // The canvas for drawing directly onto.
52 Evas_Object *bg; // Our background edje.
53 lua_State *L; // Our Lua state. 49 lua_State *L; // Our Lua state.
54 int eina, logDom, ecore_evas, edje; 50 int logDom; // Our logging domain.
55}; 51};
56 52
57 53