11 lines
244 B
C
11 lines
244 B
C
#include <linux/file.h>
|
|
#include <linux/fs.h>
|
|
|
|
struct ksu_file_proxy {
|
|
struct file* orig;
|
|
struct file_operations ops;
|
|
};
|
|
|
|
struct ksu_file_proxy* ksu_create_file_proxy(struct file* fp);
|
|
void ksu_delete_file_proxy(struct ksu_file_proxy* data);
|