view osdep/timer.h @ 21250:7b1ab00ef2eb

le2me_32 is no longer a macro on PPC, and in general does not have to be, thus using it like a constant is incorrect. Move wavhdr initialization to the code.
author reimar
date Sun, 26 Nov 2006 13:19:32 +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