mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-24 10:35:26 +00:00
787f7b3035
These links cause magiskhide unable to work ideally and add complications. I think I gave enough time for migration
30 lines
499 B
C
30 lines
499 B
C
#ifndef MAGISK_HIDE_H
|
|
#define MAGISK_HIDE_H
|
|
|
|
#include <pthread.h>
|
|
|
|
#define TERM_THREAD SIGUSR1
|
|
|
|
// Kill process
|
|
void kill_proc(int pid);
|
|
|
|
// Process monitor
|
|
void proc_monitor();
|
|
|
|
// Utility functions
|
|
void manage_selinux();
|
|
void hide_sensitive_props();
|
|
void clean_magisk_props();
|
|
|
|
// List managements
|
|
int add_list(char *proc);
|
|
int rm_list(char *proc);
|
|
int init_list();
|
|
int destroy_list();
|
|
|
|
extern int hideEnabled;
|
|
extern struct vector *hide_list;
|
|
extern pthread_mutex_t hide_lock, file_lock;
|
|
|
|
#endif
|