From b7433e108da26346c189888d0aa07ab0e896a709 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Sun, 15 Mar 2020 17:01:55 +0100 Subject: GNU libx --- minilibx_linux/mlx_flush_event.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 minilibx_linux/mlx_flush_event.c (limited to 'minilibx_linux/mlx_flush_event.c') diff --git a/minilibx_linux/mlx_flush_event.c b/minilibx_linux/mlx_flush_event.c new file mode 100644 index 0000000..1e586ad --- /dev/null +++ b/minilibx_linux/mlx_flush_event.c @@ -0,0 +1,25 @@ +/* +** mlx_flush_event.c for MiniLibX in +** +** Made by Charlie Root +** Login +** +** Started on Wed Aug 2 18:58:11 2000 Charlie Root +** Last update Fri Feb 23 17:08:48 2001 Charlie Root +*/ + + +#include "mlx_int.h" + + + + +int mlx_flush_event(t_xvar *xvar) +{ + XEvent ev; + + while (XPending(xvar->display)) + { + XNextEvent(xvar->display,&ev); + } +} -- cgit v1.2.3