aboutsummaryrefslogtreecommitdiffstats
path: root/src/launch.h
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2024-01-06 06:07:57 -0600
committerLibravatar bigfoot547 <[email protected]>2024-01-06 06:07:57 -0600
commit2d7d52542df9b925fb0d7786e828421cd731b82b (patch)
tree15c90c29ea5c0f9d1c5111d7a6a25201895c8cb1 /src/launch.h
parentlaunch info all in one place (diff)
launches the game
Diffstat (limited to 'src/launch.h')
-rw-r--r--src/launch.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/launch.h b/src/launch.h
index d329358..e4b634c 100644
--- a/src/launch.h
+++ b/src/launch.h
@@ -28,9 +28,17 @@ struct l2_launch {
char *classpath;
l2_subst_t *arg_subst;
+
+ char **game_args;
+ size_t ngame_args;
+ char **jvm_args;
+ size_t njvm_args;
};
int l2_launch_init(struct l2_launch *launch, const char *vername, struct l2_instance *inst);
+int l2_launch_init_substitutor(struct l2_launch *launch);
+int l2_launch_init_args(struct l2_launch *launch);
+int l2_launch_jni(struct l2_launch *launch);
void l2_launch_free_contents(struct l2_launch *launch);