Mercurial > mplayer.hg
annotate gui/mplayer/play.h @ 29397:2d985cc879c9
Replace WORDS_BIGENDIAN with HAVE_BIGENDIAN
author | mru |
---|---|
date | Sun, 26 Jul 2009 12:26:32 +0000 |
parents | 9e739bdb049c |
children | 00c918779261 |
rev | line source |
---|---|
26458 | 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 | |
26029 | 19 #ifndef MPLAYER_GUI_PLAY_H |
20 #define MPLAYER_GUI_PLAY_H | |
23077 | 21 |
26382
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26029
diff
changeset
|
22 #include "config.h" |
23077 | 23 |
24 extern int mplGotoTheNext; | |
25 | |
28051 | 26 void mplEnd( void ); |
27 void mplFullScreen( void ); | |
28 void mplPlay( void ); | |
29 void mplPause( void ); | |
30 void mplState( void ); | |
31 void mplPrev( void ); | |
32 void mplNext( void ); | |
33 void mplCurr( void ); | |
23077 | 34 |
28051 | 35 void mplIncAudioBufDelay( void ); |
36 void mplDecAudioBufDelay( void ); | |
23077 | 37 |
28051 | 38 void mplRelSeek( float s ); |
39 void mplAbsSeek( float s ); | |
40 float mplGetPosition( void ); | |
23077 | 41 |
28051 | 42 void mplPlayFork( void ); |
43 void mplSigHandler( int s ); | |
44 void mplPlayerThread( void ); | |
23077 | 45 |
28051 | 46 void ChangeSkin( char * name ); |
47 void EventHandling( void ); | |
23077 | 48 |
28051 | 49 void mplSetFileName( char * dir, char * name, int type ); |
23077 | 50 |
26029 | 51 #endif /* MPLAYER_GUI_PLAY_H */ |