Mercurial > mplayer.hg
view osdep/timer.h @ 26281:6eb659782586
Remove unnecessary includes
command.c: Don't include libmpcodecs/mp_image.h, libmpdemux/matroska.h
mplayer.c: Don't include libmpdemux/matroska.h
matroska.h: Remove declaration of already removed function
demux_mkv_change_subs and stop including demuxer.h
author | uau |
---|---|
date | Tue, 01 Apr 2008 15:24:53 +0000 |
parents | 88bed2131f19 |
children | 9e739bdb049c |
line wrap: on
line source
#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 */