You've already forked ZygiskNext
mirror of
https://github.com/Dr-TSNG/ZygiskNext.git
synced 2025-08-27 23:46:34 +00:00
21 lines
365 B
C++
21 lines
365 B
C++
#pragma once
|
|
|
|
|
|
void init_monitor();
|
|
bool trace_zygote(int pid);
|
|
|
|
enum Command {
|
|
START = 1,
|
|
STOP = 2,
|
|
EXIT = 3,
|
|
// sent from daemon
|
|
ZYGOTE64_INJECTED = 4,
|
|
ZYGOTE32_INJECTED = 5,
|
|
DAEMON64_SET_INFO = 6,
|
|
DAEMON32_SET_INFO = 7,
|
|
DAEMON64_SET_ERROR_INFO = 8,
|
|
DAEMON32_SET_ERROR_INFO = 9,
|
|
};
|
|
|
|
void send_control_command(Command cmd);
|