2002-02-25 15:24:11 +01:00
|
|
|
#ifndef __TIMER_H
|
|
|
|
#define __TIMER_H
|
2001-02-24 21:28:24 +01:00
|
|
|
|
2004-08-04 17:48:43 +02:00
|
|
|
extern const char *timer_name;
|
|
|
|
|
2001-02-24 21:28:24 +01:00
|
|
|
void InitTimer();
|
2001-03-13 01:13:18 +01:00
|
|
|
unsigned int GetTimer();
|
2002-01-27 18:59:12 +01:00
|
|
|
unsigned int GetTimerMS();
|
2001-02-24 21:28:24 +01:00
|
|
|
//int uGetTimer();
|
|
|
|
float GetRelativeTime();
|
|
|
|
|
2001-10-19 02:16:13 +02:00
|
|
|
int usec_sleep(int usec_delay);
|
|
|
|
|
2002-02-25 15:24:11 +01:00
|
|
|
/* timer's callback handling */
|
|
|
|
typedef void timer_callback( void );
|
|
|
|
extern unsigned set_timer_callback(unsigned ms,timer_callback func);
|
|
|
|
extern void restore_timer(void);
|
|
|
|
|
|
|
|
#endif
|