minecraft-pi-reborn/launcher/src/bootstrap.h

15 lines
271 B
C
Raw Permalink Normal View History

2021-01-27 21:26:19 +00:00
#pragma once
2020-11-24 22:12:23 +00:00
#ifdef __cplusplus
extern "C" {
#endif
void pre_bootstrap(int argc, char *argv[]);
2021-06-17 21:32:24 +00:00
void bootstrap(int argc, char *argv[]);
2024-01-24 02:57:57 +00:00
void copy_sdk(char *binary_directory, int log_with_debug);
void bootstrap_mods(char *binary_directory);
2020-11-24 22:12:23 +00:00
#ifdef __cplusplus
}
2021-06-17 21:32:24 +00:00
#endif