view osdep/timer.h @ 18228:aa202170ab0c

1.1265: Add a new command: osd_show_property_text that show an expanded property string on the OSD. 1.1264: Fix up -msgcharset and MPLAYER_CHARSET. 1.1263: document message charset functionality 1.1262: Add FIXME skeletons for -msgcharset and MPLAYER_CHARSET. 1.1261: sync to x264 r503 (dct_decimate)
author kraymer
date Sun, 23 Apr 2006 19:47:29 +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