Mercurial > mplayer.hg
view osdep/timer.h @ 23784:27fc683b631c
Modify X11 headers check so as not to add /usr/include, the default system
include path, to our custom include path or duplicate entries in it.
author | diego |
---|---|
date | Tue, 17 Jul 2007 11:16:15 +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