15 lines
320 B
C
15 lines
320 B
C
#ifndef __KSU_H_FILE_WRAPPER
|
|
#define __KSU_H_FILE_WRAPPER
|
|
|
|
#include <linux/file.h>
|
|
#include <linux/fs.h>
|
|
|
|
struct ksu_file_wrapper {
|
|
struct file *orig;
|
|
struct file_operations ops;
|
|
};
|
|
|
|
struct ksu_file_wrapper *ksu_create_file_wrapper(struct file *fp);
|
|
void ksu_delete_file_wrapper(struct ksu_file_wrapper *data);
|
|
|
|
#endif |