#ifndef KSU_FILE_WRAPPER_H #define KSU_FILE_WRAPPER_H #include #include 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 // KSU_FILE_WRAPPER_H