Magisk/native/jni/magiskhide/magiskhide.h

30 lines
499 B
C
Raw Normal View History

2016-12-30 18:44:24 +00:00
#ifndef MAGISK_HIDE_H
#define MAGISK_HIDE_H
2017-04-20 14:45:56 +00:00
#include <pthread.h>
#define TERM_THREAD SIGUSR1
// Kill process
void kill_proc(int pid);
2017-04-05 22:12:29 +00:00
// Process monitor
2017-04-21 16:54:08 +00:00
void proc_monitor();
2016-12-30 18:44:24 +00:00
2017-07-10 15:39:33 +00:00
// Utility functions
2017-04-17 08:36:49 +00:00
void manage_selinux();
void hide_sensitive_props();
2017-07-18 04:26:23 +00:00
void clean_magisk_props();
2017-04-17 08:36:49 +00:00
2017-04-20 14:45:56 +00:00
// List managements
int add_list(char *proc);
int rm_list(char *proc);
int init_list();
int destroy_list();
2017-07-10 15:39:33 +00:00
extern int hideEnabled;
2017-04-20 14:45:56 +00:00
extern struct vector *hide_list;
2017-05-03 18:58:37 +00:00
extern pthread_mutex_t hide_lock, file_lock;
2016-12-30 18:44:24 +00:00
#endif