summaryrefslogtreecommitdiff
path: root/include/state.h
diff options
context:
space:
mode:
authorjussi2023-10-15 22:31:17 +0300
committerjussi2023-10-15 22:31:17 +0300
commit95be0403e69b3047a0375cf965dedca0ad876409 (patch)
treeebfc72f0e5ad7c193e679a0744443b367902c09a /include/state.h
parent7af7e7003131e182efb30bac8c1ff06ac1d667d6 (diff)
downloadreilua-enhanced-95be0403e69b3047a0375cf965dedca0ad876409.tar.gz
reilua-enhanced-95be0403e69b3047a0375cf965dedca0ad876409.tar.bz2
reilua-enhanced-95be0403e69b3047a0375cf965dedca0ad876409.zip
Argumets stored in RL.arg array.
Diffstat (limited to 'include/state.h')
-rw-r--r--include/state.h4
1 files changed, 2 insertions, 2 deletions
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();