You've already forked ReZygisk
mirror of
https://github.com/PerformanC/ReZygisk.git
synced 2025-09-06 06:37:01 +00:00
This commit adds the first base for C99 zygiskd, that is not fully working or code-ready.
15 lines
234 B
C
15 lines
234 B
C
#ifndef KERNELSU_H
|
|
#define KERNELSU_H
|
|
|
|
#include "../constants.h"
|
|
|
|
enum RootImplState ksu_get_kernel_su(void);
|
|
|
|
bool ksu_uid_granted_root(uid_t uid);
|
|
|
|
bool ksu_uid_should_umount(uid_t uid);
|
|
|
|
bool ksu_uid_is_manager(uid_t uid);
|
|
|
|
#endif
|