psmouse.h
上传用户:qddsws
上传日期:2022-06-22
资源大小:723k
文件大小:0k
源码类别:

操作系统开发

开发平台:

C/C++

  1. #ifndef PSMOUSE_H
  2. #define PSMOUSE_H
  3. #define MOUSE 3
  4. #define GET_MOUSE_COORDINATES 1
  5. #include <i386/pic.h>
  6. #include <devices/ps2base.h>
  7. struct Ps2Mouse
  8. {
  9.        int has_wheel;
  10.        int x, y, xmax, xmin, ymax, ymin, wheel;
  11.        dword buttons;
  12. };
  13. void psmouse_command(unsigned long cmd, void* param);
  14. void __init_device init_psmouse (struct device* dev);
  15. void get_mouse_coord() ;
  16. extern void rsi_mouse () ;
  17. #endif