deepstone

view src/mouse.h @ 41:482f30e63462

fixed typos in readme
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 15 Sep 2017 05:33:57 +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_ */