mirror of
https://github.com/mpv-player/mpv
synced 2024-10-30 04:46:41 +01:00
a931e510b1
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23954 b3059339-0415-0410-9bf9-f77b7e298cf2
20 lines
446 B
C
20 lines
446 B
C
#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 */
|