You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
353 B
21 lines
353 B
/*
|
|
** mlx_loop_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:11:39 2001 Charlie Root
|
|
*/
|
|
|
|
|
|
#include "mlx_int.h"
|
|
|
|
|
|
|
|
|
|
int mlx_loop_hook(t_xvar *xvar,int (*funct)(),void *param)
|
|
{
|
|
xvar->loop_hook = funct;
|
|
xvar->loop_param = param;
|
|
}
|
|
|