Mercurial > mplayer.hg
annotate osdep/timer.h @ 35811:2ce01f3d3b37
Switch from OpenGL.h to gl.h
The former seems to miss some needed defines
from OSX 10.8 on, and gl.h seems to work
without issues at the very least down to 10.5
author | reimar |
---|---|
date | Sun, 27 Jan 2013 15:33:31 +0000 |
parents | 1453fc56d49c |
children |
rev | line source |
---|---|
28744 | 1 /* |
2 * This file is part of MPlayer. | |
3 * | |
4 * MPlayer is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; either version 2 of the License, or | |
7 * (at your option) any later version. | |
8 * | |
9 * MPlayer is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License along | |
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
17 */ | |
18 | |
23934
88bed2131f19
Identifiers starting with underscores are reserved.
diego
parents:
17566
diff
changeset
|
19 #ifndef MPLAYER_TIMER_H |
88bed2131f19
Identifiers starting with underscores are reserved.
diego
parents:
17566
diff
changeset
|
20 #define MPLAYER_TIMER_H |
1 | 21 |
31464
1453fc56d49c
Change timer_name type from char* to char[]; patch taken from Uoti's tree.
diego
parents:
31187
diff
changeset
|
22 extern const char timer_name[]; |
12954 | 23 |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
12954
diff
changeset
|
24 void InitTimer(void); |
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
12954
diff
changeset
|
25 unsigned int GetTimer(void); |
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
12954
diff
changeset
|
26 unsigned int GetTimerMS(void); |
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
12954
diff
changeset
|
27 float GetRelativeTime(void); |
1 | 28 |
2266 | 29 int usec_sleep(int usec_delay); |
30 | |
4863 | 31 /* timer's callback handling */ |
32 typedef void timer_callback( void ); | |
28051 | 33 unsigned set_timer_callback(unsigned ms,timer_callback func); |
34 void restore_timer(void); | |
4863 | 35 |
23934
88bed2131f19
Identifiers starting with underscores are reserved.
diego
parents:
17566
diff
changeset
|
36 #endif /* MPLAYER_TIMER_H */ |