Mercurial > mplayer.hg
view osdep/timer.h @ 20459:231f139a324d
Partial sync with en/mplayer.1 (2)
zh/mplayer.1 is mainly updated with section of
"DEMUXER/STREAM OPTIONS"
patch by Sheldon Jin (jinsh2 yahoo com)
author | kraymer |
---|---|
date | Fri, 27 Oct 2006 23:13:46 +0000 |
parents | f580a7755ac5 |
children | 88bed2131f19 |
line wrap: on
line source
#ifndef __TIMER_H #define __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