Magisk/native/jni/core/core.hpp

37 lines
801 B
C++
Raw Normal View History

2021-01-11 11:19:10 +01:00
#pragma once
#include <string>
#include <vector>
extern bool RECOVERY_MODE;
extern int DAEMON_STATE;
2021-09-16 14:27:34 +02:00
// Daemon state
enum : int {
STATE_NONE,
STATE_POST_FS_DATA,
STATE_POST_FS_DATA_DONE,
STATE_LATE_START_DONE,
STATE_BOOT_COMPLETE
};
2021-01-11 11:19:10 +01:00
void unlock_blocks();
void reboot();
2021-08-12 12:26:54 +02:00
void start_log_daemon();
2021-01-11 11:19:10 +01:00
void setup_logfile(bool reset);
2021-08-21 12:52:59 +02:00
void magisk_logging();
2021-01-11 11:19:10 +01:00
// Module stuffs
void handle_modules();
void magic_mount();
void disable_modules();
void remove_modules();
void exec_module_scripts(const char *stage);
// Scripting
void exec_script(const char *script);
void exec_common_scripts(const char *stage);
void exec_module_scripts(const char *stage, const std::vector<std::string> &module_list);
void install_apk(const char *apk);
[[noreturn]] void install_module(const char *file);