/*
* call_out.c
*
* Handle call_out funcs
*
* (C) Frank Schmidt, Jesus@NorseMUD
*
*/
/* issue a call_out */
static varargs void call_out(string func, int delay, mixed args...) {
GLOBAL->call_out(this_object(), func, delay, args);
}
/* find a call_out */
static varargs int find_call_out(string func) {
return GLOBAL->find_call_out(this_object(), func);
}
/* remove a call_out */
static varargs int remove_call_out(string func) {
return GLOBAL->remove_call_out(this_object(), func);
}
/* return a copy of call_out info table */
static varargs mixed **call_out_info() {
return GLOBAL->call_out_info();
}