Mercurial > mplayer.hg
annotate gui/mplayer/play.h @ 27298:0de5b595d2ae
Remove "en" from list of all man page languages when generating man page
installation rules from a pattern. There is a separate rule for English above.
author | diego |
---|---|
date | Sat, 19 Jul 2008 11:32:33 +0000 |
parents | b0a7b35b78d2 |
children | 9e739bdb049c |
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 | |
26 extern void mplEnd( void ); | |
27 extern void mplFullScreen( void ); | |
28 extern void mplPlay( void ); | |
29 extern void mplPause( void ); | |
30 extern void mplState( void ); | |
31 extern void mplPrev( void ); | |
32 extern void mplNext( void ); | |
33 extern void mplCurr( void ); | |
34 | |
35 extern void mplIncAudioBufDelay( void ); | |
36 extern void mplDecAudioBufDelay( void ); | |
37 | |
38 extern void mplRelSeek( float s ); | |
39 extern void mplAbsSeek( float s ); | |
40 extern float mplGetPosition( void ); | |
41 | |
42 extern void mplPlayFork( void ); | |
43 extern void mplSigHandler( int s ); | |
44 extern void mplPlayerThread( void ); | |
45 | |
46 extern void ChangeSkin( char * name ); | |
47 extern void EventHandling( void ); | |
48 | |
49 extern void mplSetFileName( char * dir,char * name,int type ); | |
50 | |
26029 | 51 #endif /* MPLAYER_GUI_PLAY_H */ |