summaryrefslogtreecommitdiffstats
path: root/osdep/timer.h
blob: 1e181650c1563000836f87a4fde7bbc0a5ecb517 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __TIMER_H
#define __TIMER_H

extern const char *timer_name;

void InitTimer();
unsigned int GetTimer();
unsigned int GetTimerMS();
//int uGetTimer();
float GetRelativeTime();

int usec_sleep(int usec_delay);

/* 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