blob: 948809d999177867fb0820236f32e59a3d7ce52a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef IOCTL32_H
#define IOCTL32_H 1
#include <linux/compiler.h> /* for __deprecated */
struct file;
typedef int (*ioctl_trans_handler_t)(unsigned int, unsigned int,
unsigned long, struct file *);
struct ioctl_trans {
unsigned long cmd;
ioctl_trans_handler_t handler;
struct ioctl_trans *next;
};
#endif
|