remove_param_int(3) Removes a timer with a customizable parameter. Allegro game programming library.

SYNOPSIS

#include <allegro.h>

void remove_param_int(void (*proc)(void *), void *param);

DESCRIPTION

Like remove_int(), but for use with timer callbacks that have parameter values. If there is more than one copy of the same callback active at a time, it identifies which one to remove by checking the parameter value (so you can't have more than one copy of a handler using an identical parameter).