aboutsummaryrefslogtreecommitdiffstats
path: root/minilibx-bsd/mlx_flush_event.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-15 16:19:44 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-15 16:19:44 +0200
commit46687fa2cef63e99a0ded077d88c3b19b20cc1ca (patch)
tree020590d4319b4bd0217cdf97750f3a8338d3069e /minilibx-bsd/mlx_flush_event.c
parentAdded line to gitignore (diff)
download42-cub3d-46687fa2cef63e99a0ded077d88c3b19b20cc1ca.tar.gz
42-cub3d-46687fa2cef63e99a0ded077d88c3b19b20cc1ca.tar.bz2
42-cub3d-46687fa2cef63e99a0ded077d88c3b19b20cc1ca.tar.xz
42-cub3d-46687fa2cef63e99a0ded077d88c3b19b20cc1ca.tar.zst
42-cub3d-46687fa2cef63e99a0ded077d88c3b19b20cc1ca.zip
Now BSD compliant
Diffstat (limited to 'minilibx-bsd/mlx_flush_event.c')
-rw-r--r--minilibx-bsd/mlx_flush_event.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/minilibx-bsd/mlx_flush_event.c b/minilibx-bsd/mlx_flush_event.c
new file mode 100644
index 0000000..1e586ad
--- /dev/null
+++ b/minilibx-bsd/mlx_flush_event.c
@@ -0,0 +1,25 @@
+/*
+** mlx_flush_event.c for MiniLibX in
+**
+** Made by Charlie Root
+** Login <ol@epitech.net>
+**
+** 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);
+ }
+}