view osdep/timer.h @ 23721:bf545b65d688

r23687: Implemented tv://[<channel>][/<input_id>] url syntax r23714: roff fix (new line for new sentence) r23718: small grammar fix fix untranslated word
author voroshil
date Sun, 08 Jul 2007 03:29:23 +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