2005-04-17 00:20:36 +02:00
|
|
|
#ifndef IOCTL32_H
|
|
|
|
#define IOCTL32_H 1
|
|
|
|
|
2005-04-17 00:25:48 +02:00
|
|
|
#include <linux/compiler.h> /* for __deprecated */
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
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
|