version 1.7 | | version 1.8 |
---|
| | |
#include <sproto.h> | | #include <sproto.h> |
#endif | | #endif |
| | |
| | static void cftimer_process_event(object* ob); |
| | |
/*****************************************************************************/ | | /*****************************************************************************/ |
/* Processes all timers. */ | | /* Processes all timers. */ |
/*****************************************************************************/ | | /*****************************************************************************/ |
| | |
/*****************************************************************************/ | | /*****************************************************************************/ |
/* Triggers the EVENT_TIMER of the given object */ | | /* Triggers the EVENT_TIMER of the given object */ |
/*****************************************************************************/ | | /*****************************************************************************/ |
void cftimer_process_event(object* ob) | | static void cftimer_process_event(object* ob) |
{ | | { |
execute_event(ob, EVENT_TIMER,NULL,NULL,NULL,SCRIPT_FIX_ALL); | | execute_event(ob, EVENT_TIMER,NULL,NULL,NULL,SCRIPT_FIX_ALL); |
} | | } |