root/drivers/char/mouse.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef __MOUSE_H
   2 #define __MOUSE_H
   3 
   4 struct mouse {
   5         int minor;
   6         const char *name;
   7         struct file_operations *fops;
   8         struct mouse * next, * prev;
   9 };
  10 
  11 extern int mouse_register(struct mouse * mouse);
  12 extern int mouse_deregister(struct mouse * mouse);
  13 
  14 #endif

/* [previous][next][first][last][top][bottom][index][help] */