summaryrefslogtreecommitdiffstats
path: root/osdep/timer.h
blob: b0f289c00a3e4ba519bbf60ef27d4d39ae5ea8e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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();

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