From 9bbc949c432f6a981fdac5aec4b36edd2f4dcdba Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 4 Mar 2020 11:09:50 +0100 Subject: Linux branch with minilibx_linux(https://framagit.org/ggenois/minilibx_linux) --- minilibx/mlx_hook.c | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100755 minilibx/mlx_hook.c (limited to 'minilibx/mlx_hook.c') diff --git a/minilibx/mlx_hook.c b/minilibx/mlx_hook.c new file mode 100755 index 0000000..98e509a --- /dev/null +++ b/minilibx/mlx_hook.c @@ -0,0 +1,40 @@ +/* +** mlx_hook.c for MiniLibX in +** +** Made by Charlie Root +** Login +** +** Started on Thu Aug 3 11:49:06 2000 Charlie Root +** Last update Fri Jan 28 17:05:28 2005 Olivier Crouzet +*/ + + +#include "mlx_int.h" + + + + +int mlx_hook(t_win_list *win, int x_event, int x_mask, + int (*funct)(),void *param) +{ + win->hooks[x_event].hook = funct; + win->hooks[x_event].param = param; + win->hooks[x_event].mask = x_mask; +} + + +int mlx_do_key_autorepeatoff(t_xvar *xvar) +{ + XAutoRepeatOff(xvar->display); +} + +int mlx_do_key_autorepeaton(t_xvar *xvar) +{ + XAutoRepeatOn(xvar->display); +} + + +int mlx_do_sync(t_xvar *xvar) +{ + XSync(xvar->display, False); +} -- cgit