dos3d
view src/mouse.h @ 17:1e9f0b3616fa
fixed the matrix multiplication order
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Wed, 30 Nov 2011 00:04:16 +0200 |
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_ */