2313
|
1 /* Audacious - Cross-platform multimedia player
|
|
2 * Copyright (C) 2005-2007 Audacious development team
|
|
3 *
|
|
4 * Based on BMP:
|
|
5 * Copyright (C) 2003-2004 BMP development team
|
|
6 *
|
|
7 * This program is free software; you can redistribute it and/or modify
|
|
8 * it under the terms of the GNU General Public License as published by
|
|
9 * the Free Software Foundation; under version 2 of the License.
|
|
10 *
|
|
11 * This program is distributed in the hope that it will be useful,
|
|
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14 * GNU General Public License for more details.
|
|
15 *
|
|
16 * You should have received a copy of the GNU General Public License
|
|
17 * along with this program; if not, write to the Free Software
|
|
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
19 */
|
|
20
|
|
21 #ifndef PLAYBACK_H
|
|
22 #define PLAYBACK_H
|
|
23
|
|
24 #include <glib.h>
|
|
25
|
|
26 #include "audacious/playlist.h"
|
|
27
|
|
28 void playback_set_random_skin(void);
|
|
29 gint playback_get_time(void);
|
|
30 void playback_initiate(void);
|
|
31 void playback_pause(void);
|
|
32 void playback_stop(void);
|
|
33 gboolean playback_play_file(PlaylistEntry *entry);
|
|
34 gboolean playback_get_playing(void);
|
|
35 gboolean playback_get_paused(void);
|
|
36 void playback_seek(gint time);
|
|
37 void playback_seek_relative(gint offset);
|
|
38
|
|
39 #endif
|