aboutsummaryrefslogtreecommitdiff
path: root/common/timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/timer.h')
-rw-r--r--common/timer.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/common/timer.h b/common/timer.h
index 4a69247bfa..0ed416679d 100644
--- a/common/timer.h
+++ b/common/timer.h
@@ -52,11 +52,14 @@ public:
Timer(Engine *engine);
~Timer();
- int handler(int *t);
bool init();
void release();
bool installProcedure(TimerProc procedure, int32 interval);
void releaseProcedure(TimerProc procedure);
+
+protected:
+ static int timer_handler(int t);
+ int handler(int t);
};
#endif