23 lines
435 B
C
23 lines
435 B
C
/*
|
|
** mlx_mouse_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:05 2001 Charlie Root
|
|
*/
|
|
|
|
|
|
#include "mlx_int.h"
|
|
|
|
|
|
|
|
|
|
int mlx_mouse_hook(t_win_list *win,int (*funct)(),void *param)
|
|
{
|
|
win->hooks[ButtonPress].hook = funct;
|
|
win->hooks[ButtonPress].param = param;
|
|
win->hooks[ButtonPress].mask = ButtonPressMask;
|
|
}
|