annotate linux/timer.h @ 8612:a61d1b326beb

It shows not just the progressbar, but progressbar /and/ percentage for osd levels 2 and 3, and inaddition it adds a new osd level (3) which also shows total time. patch by seru <seru@gmx.net>
author arpi
date Sat, 28 Dec 2002 14:17:38 +0000
parents df50da00260a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4863
df50da00260a POSIX compatible timer's callback
nick
parents: 4385
diff changeset
1 #ifndef __TIMER_H
df50da00260a POSIX compatible timer's callback
nick
parents: 4385
diff changeset
2 #define __TIMER_H
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
3
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
4 void InitTimer();
99
fb1fc94eaff0 removed redundancy...
arpi_esp
parents: 1
diff changeset
5 unsigned int GetTimer();
4385
7bb8f7905000 GetTimerMS added - get timer in millisec
arpi
parents: 2266
diff changeset
6 unsigned int GetTimerMS();
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
7 //int uGetTimer();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
8 float GetRelativeTime();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
9
2266
c2ed1e5742ed sleep stuff moved to linux/timertimer-lx.c
arpi
parents: 99
diff changeset
10 int usec_sleep(int usec_delay);
c2ed1e5742ed sleep stuff moved to linux/timertimer-lx.c
arpi
parents: 99
diff changeset
11
4863
df50da00260a POSIX compatible timer's callback
nick
parents: 4385
diff changeset
12 /* timer's callback handling */
df50da00260a POSIX compatible timer's callback
nick
parents: 4385
diff changeset
13 typedef void timer_callback( void );
df50da00260a POSIX compatible timer's callback
nick
parents: 4385
diff changeset
14 extern unsigned set_timer_callback(unsigned ms,timer_callback func);
df50da00260a POSIX compatible timer's callback
nick
parents: 4385
diff changeset
15 extern void restore_timer(void);
df50da00260a POSIX compatible timer's callback
nick
parents: 4385
diff changeset
16
df50da00260a POSIX compatible timer's callback
nick
parents: 4385
diff changeset
17 #endif