aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/GuiLua/GuiLua.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/GuiLua/GuiLua.h')
-rw-r--r--src/GuiLua/GuiLua.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/GuiLua/GuiLua.h b/src/GuiLua/GuiLua.h
index 9ee5a1f..cf94e1f 100644
--- a/src/GuiLua/GuiLua.h
+++ b/src/GuiLua/GuiLua.h
@@ -22,6 +22,7 @@ typedef struct _GuiLua
22 winFang *us; // Our window, if it exists. 22 winFang *us; // Our window, if it exists.
23 winFang *parent; // Our parent window, if it exists. 23 winFang *parent; // Our parent window, if it exists.
24 EPhysics_World *world; // Our world, if it exists. 24 EPhysics_World *world; // Our world, if it exists.
25 Ecore_Con_Server *server;
25 int inDel; 26 int inDel;
26 27
27 Eina_Clist node; 28 Eina_Clist node;
@@ -32,7 +33,7 @@ typedef struct _GuiLua
32extern const char *glName; 33extern const char *glName;
33 34
34GuiLua *GuiLuaDo(int argc, char **argv, winFang *parent, EPhysics_World *world); 35GuiLua *GuiLuaDo(int argc, char **argv, winFang *parent, EPhysics_World *world);
35GuiLua *GuiLuaLoad(char *module, winFang *parent, EPhysics_World *world); 36GuiLua *GuiLuaLoad(char *module, winFang *parent, Ecore_Con_Server *server, EPhysics_World *world);
36void GuiLuaDel(GuiLua *gl); 37void GuiLuaDel(GuiLua *gl);
37 38
38#endif 39#endif