psmouse.h
资源名称:tizos.rar [点击查看]
上传用户:qddsws
上传日期:2022-06-22
资源大小:723k
文件大小:0k
源码类别:
操作系统开发
开发平台:
C/C++
- #ifndef PSMOUSE_H
- #define PSMOUSE_H
- #define MOUSE 3
- #define GET_MOUSE_COORDINATES 1
- #include <i386/pic.h>
- #include <devices/ps2base.h>
- struct Ps2Mouse
- {
- int has_wheel;
- int x, y, xmax, xmin, ymax, ymin, wheel;
- dword buttons;
- };
- void psmouse_command(unsigned long cmd, void* param);
- void __init_device init_psmouse (struct device* dev);
- void get_mouse_coord() ;
- extern void rsi_mouse () ;
- #endif