diff options
| author | 2024-01-09 04:27:18 -0600 | |
|---|---|---|
| committer | 2024-01-09 04:27:18 -0600 | |
| commit | 82ceaa4680ee1a626effb6008ba605a10da07468 (patch) | |
| tree | 90fff79a9857be692fd7a991f97660b672b8129c /src/launch.h | |
| parent | finish the runtime stuff (buggy maybe) (diff) | |
actually use runtime
Diffstat (limited to 'src/launch.h')
| -rw-r--r-- | src/launch.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/launch.h b/src/launch.h index e4b634c..598a152 100644 --- a/src/launch.h +++ b/src/launch.h @@ -24,6 +24,7 @@ struct l2_launch { char *natives; char *jarpath; + char *jrepath; char *main_class; char *classpath; @@ -36,6 +37,9 @@ struct l2_launch { }; int l2_launch_init(struct l2_launch *launch, const char *vername, struct l2_instance *inst); +int l2_launch_init_runtime(struct l2_launch *launch); /* returns 1 if good, 0 if no java version specified */ +int l2_launch_init_runtime_manual(struct l2_launch *launch, const char *home); + 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); |
