ioctl32.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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