170 #define MOUSEMOVE 1 #define LEFTBPRESS 2 #define LEFTBRELEASE 4 #define RIGHTBPRESS 8 #define RIGHTBRELEASE 16 extern int mousex, mousey; int init_mouse(void); void exit_mouse(void); void show_mouse(void); void hide_mouse(void); void set_mouse_sens(int xsens, int ysens, int dblspd_thre); int get_mouse_event(void); int get_button_status(void); . 0