dos3d

view src/mouse.h @ 24:698c4d07702d

fixed the linux makefile
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 20 Jun 2017 21:55:49 +0300
parents
children
line source
1 #ifndef MOUSE_H_
2 #define MOUSE_H_
4 #define MOUSE_LEFT 1
5 #define MOUSE_RIGHT 2
6 #define MOUSE_MIDDLE 4
8 int have_mouse(void);
9 void show_mouse(int show);
10 int read_mouse(int *xp, int *yp);
11 void set_mouse(int x, int y);
12 void set_mouse_limits(int xmin, int ymin, int xmax, int ymax);
14 #endif /* MOUSE_H_ */