summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/lua_core.h2
-rw-r--r--include/state.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/lua_core.h b/include/lua_core.h
index 2285ca4..ed5fb7d 100644
--- a/include/lua_core.h
+++ b/include/lua_core.h
@@ -14,7 +14,7 @@ enum EventType {
EVENT_CURSOR_ENTER
};
-bool luaInit();
+bool luaInit( int argn, const char **argc );
int luaTraceback( lua_State *L );
bool luaCallMain();
void luaCallProcess();
diff --git a/include/state.h b/include/state.h
index 13a7c6c..725cb6e 100644
--- a/include/state.h
+++ b/include/state.h
@@ -97,6 +97,6 @@ typedef struct {
extern State *state;
-bool stateInit( const char *exePath );
-void stateInitInterpret();
+bool stateInit( int argn, const char **argc, const char *exePath );
+void stateInitInterpret( int argn, const char **argc );
void stateFree();