mirror of
https://github.com/mpv-player/mpv
synced 2024-11-07 01:47:00 +01:00
7ff83a7181
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9381 b3059339-0415-0410-9bf9-f77b7e298cf2
18 lines
364 B
C
18 lines
364 B
C
#ifndef __TIMER_H
|
|
#define __TIMER_H
|
|
|
|
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
|