aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ClientHamr/GuiLua/skang.c
diff options
context:
space:
mode:
Diffstat (limited to 'ClientHamr/GuiLua/skang.c')
-rw-r--r--ClientHamr/GuiLua/skang.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/ClientHamr/GuiLua/skang.c b/ClientHamr/GuiLua/skang.c
index ed92ff9..facc239 100644
--- a/ClientHamr/GuiLua/skang.c
+++ b/ClientHamr/GuiLua/skang.c
@@ -1,11 +1,16 @@
1#include "GuiLua.h" 1#include "GuiLua.h"
2 2
3 3
4int main(int argc, char **argv) 4EAPI_MAIN int elm_main(int argc, char **argv)
5{ 5{
6 int result = EXIT_FAILURE; 6 elm_app_compile_bin_dir_set(PACKAGE_BIN_DIR);
7 elm_app_compile_data_dir_set(PACKAGE_DATA_DIR);
8 elm_app_compile_lib_dir_set(PACKAGE_LIB_DIR);
9 elm_app_info_set(elm_main, "GuiLua", "skang.lua");
7 10
8 GuiLuaDo(argc, argv); 11 GuiLuaDo(argc, argv);
9 12
10 return result; 13 return 0;
11} 14}
15
16ELM_MAIN()