ioctl32.h 318 B

1234567891011121314151617
  1. #ifndef IOCTL32_H
  2. #define IOCTL32_H 1
  3. #include <linux/compiler.h> /* for __deprecated */
  4. struct file;
  5. typedef int (*ioctl_trans_handler_t)(unsigned int, unsigned int,
  6. unsigned long, struct file *);
  7. struct ioctl_trans {
  8. unsigned long cmd;
  9. ioctl_trans_handler_t handler;
  10. struct ioctl_trans *next;
  11. };
  12. #endif