aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/GuiLua
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-05-08 07:32:36 +1000
committerDavid Walter Seikel2014-05-08 07:32:36 +1000
commit6617c76a5e8c902abab5e54c462e552f4ac285e1 (patch)
tree4dde0d6e14a7112e5595da9fc68f21365efaa046 /src/GuiLua
parentSwitch to purkle is complete. (diff)
downloadSledjHamr-6617c76a5e8c902abab5e54c462e552f4ac285e1.zip
SledjHamr-6617c76a5e8c902abab5e54c462e552f4ac285e1.tar.gz
SledjHamr-6617c76a5e8c902abab5e54c462e552f4ac285e1.tar.bz2
SledjHamr-6617c76a5e8c902abab5e54c462e552f4ac285e1.tar.xz
And now purkle is it's own skang module.
Diffstat (limited to 'src/GuiLua')
-rw-r--r--src/GuiLua/GuiLua.c2
-rw-r--r--src/GuiLua/GuiLua.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/GuiLua/GuiLua.c b/src/GuiLua/GuiLua.c
index cfcc9d8..dbd3f95 100644
--- a/src/GuiLua/GuiLua.c
+++ b/src/GuiLua/GuiLua.c
@@ -144,7 +144,7 @@ and ordinary elementary widgets. Proper introspection can come later.
144 144
145 145
146static int logDom; // Our logging domain. 146static int logDom; // Our logging domain.
147static const char *glName = "ourGuiLua"; 147const char *glName = "ourGuiLua";
148 148
149/* Sooo, how to do this - 149/* Sooo, how to do this -
150widget has to be a light userdata 150widget has to be a light userdata
diff --git a/src/GuiLua/GuiLua.h b/src/GuiLua/GuiLua.h
index 2a4a3f0..75c0b38 100644
--- a/src/GuiLua/GuiLua.h
+++ b/src/GuiLua/GuiLua.h
@@ -27,6 +27,8 @@ typedef struct _GuiLua
27 Evas_Smart_Cb on_del; 27 Evas_Smart_Cb on_del;
28} GuiLua; 28} GuiLua;
29 29
30extern const char *glName;
31
30GuiLua *GuiLuaDo(int argc, char **argv, winFang *parent); 32GuiLua *GuiLuaDo(int argc, char **argv, winFang *parent);
31void GuiLuaDel(GuiLua *gl); 33void GuiLuaDel(GuiLua *gl);
32 34