mirror of
https://github.com/tiann/KernelSU.git
synced 2025-02-20 11:43:32 +08:00
29 lines
667 B
C
29 lines
667 B
C
#ifndef __KSU_H_KSHOOK
|
|
#define __KSU_H_KSHOOK
|
|
|
|
#include <linux/fs.h>
|
|
#include <linux/types.h>
|
|
|
|
// For sucompat
|
|
|
|
int ksu_handle_faccessat(int *dfd, const char __user **filename_user, int *mode,
|
|
int *flags);
|
|
|
|
int ksu_handle_stat(int *dfd, const char __user **filename_user, int *flags);
|
|
|
|
// For ksud
|
|
|
|
int ksu_handle_vfs_read(struct file **file_ptr, char __user **buf_ptr,
|
|
size_t *count_ptr, loff_t **pos);
|
|
|
|
// For ksud and sucompat
|
|
|
|
int ksu_handle_execveat(int *fd, struct filename **filename_ptr, void *argv,
|
|
void *envp, int *flags);
|
|
|
|
// For volume button
|
|
int ksu_handle_input_handle_event(unsigned int *type, unsigned int *code,
|
|
int *value);
|
|
|
|
#endif
|