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
|
|
22 extern int mplGotoTheNext;
|
|
23
|
28051
|
24 void mplEnd( void );
|
|
25 void mplFullScreen( void );
|
|
26 void mplPlay( void );
|
|
27 void mplPause( void );
|
|
28 void mplState( void );
|
|
29 void mplPrev( void );
|
|
30 void mplNext( void );
|
|
31 void mplCurr( void );
|
23077
|
32
|
28051
|
33 void mplIncAudioBufDelay( void );
|
|
34 void mplDecAudioBufDelay( void );
|
23077
|
35
|
28051
|
36 void mplRelSeek( float s );
|
|
37 void mplAbsSeek( float s );
|
|
38 float mplGetPosition( void );
|
23077
|
39
|
28051
|
40 void mplPlayFork( void );
|
|
41 void mplSigHandler( int s );
|
|
42 void mplPlayerThread( void );
|
23077
|
43
|
28051
|
44 void ChangeSkin( char * name );
|
|
45 void EventHandling( void );
|
23077
|
46
|
28051
|
47 void mplSetFileName( char * dir, char * name, int type );
|
23077
|
48
|
26029
|
49 #endif /* MPLAYER_GUI_PLAY_H */
|