mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 01:48:08 +01:00
Added libft and mlx
This commit is contained in:
parent
8448ae3a23
commit
82d06d234a
122 changed files with 10400 additions and 0 deletions
22
mlx/mlx_expose_hook.c
Normal file
22
mlx/mlx_expose_hook.c
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
/*
|
||||
** mlx_expose_hook.c for MiniLibX in
|
||||
**
|
||||
** Made by Charlie Root
|
||||
** Login <ol@epitech.net>
|
||||
**
|
||||
** Started on Thu Aug 3 11:49:06 2000 Charlie Root
|
||||
** Last update Fri Feb 23 17:07:42 2001 Charlie Root
|
||||
*/
|
||||
|
||||
|
||||
#include "mlx_int.h"
|
||||
|
||||
|
||||
|
||||
|
||||
int mlx_expose_hook(t_win_list *win,int (*funct)(),void *param)
|
||||
{
|
||||
win->hooks[Expose].hook = funct;
|
||||
win->hooks[Expose].param = param;
|
||||
win->hooks[Expose].mask = ExposureMask;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue