-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmlx_constants.h
24 lines (21 loc) · 1.14 KB
/
mlx_constants.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* mlx_constants.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mpauw <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/02/07 14:03:46 by mpauw #+# #+# */
/* Updated: 2018/02/07 14:04:29 by mpauw ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MLX_CONSTANTS_H
# define MLX_CONSTANTS_H
# define POINTER_MOTION_MASK (1L<<6)
# define BUTTON_MOTION_MASK (1L<<8)
# define BUTTON_RELEASE_MASK (1L<<3)
# define KEY_PRESS_MASK (1L<<0)
# define MOTION_NOTIFY 6
# define KEY_PRESS 2
# define BUTTON_RELEASE 5
#endif