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

extern const char *timer_name;

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

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