-
Notifications
You must be signed in to change notification settings - Fork 0
/
mouse_events.h
20 lines (17 loc) · 1.09 KB
/
mouse_events.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* mouse_events.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tdarchiv <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/23 16:55:05 by tdarchiv #+# #+# */
/* Updated: 2019/02/27 18:05:59 by tdarchiv ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FRACTOL_MOUSE_EVENTS_H
# define FRACTOL_MOUSE_EVENTS_H
int mouse_move(int x, int y, void *param);
int mouse_down(int button, int x, int y, void *param);
int mouse_up(int button, int x, int y, void *param);
#endif