2021-01-27 21:26:19 +00:00
|
|
|
#pragma once
|
2020-11-24 22:12:23 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2022-06-04 02:25:22 +00:00
|
|
|
#define MCPI_PATCHED_DIR "/tmp/.minecraft-pi-patched"
|
|
|
|
|
|
|
|
void patch_mcpi_elf_dependencies(const char *original_path, char *new_path, const char *linker);
|
2022-05-03 02:44:10 +00:00
|
|
|
char *patch_get_interpreter(const char *file);
|
2020-11-24 22:12:23 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2021-06-17 21:32:24 +00:00
|
|
|
#endif
|