put example files to dedicated dir
[monster.git] / playback.h
blob9a881365659402b540e800b75997cfa531c5cf3f
1 /* -*- Mode: C ; c-basic-offset: 2 -*- */
2 /*****************************************************************************
4 * Playback control and playlist handling
5 * This file is part of monster
7 * Copyright (C) 2006,2007 Nedko Arnaudov <nedko@arnaudov.name>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; version 2 of the License
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
22 *****************************************************************************/
24 #ifndef PLAYBACK_H__6CB9696F_CF93_490A_A1B5_A4AC72FD54F0__INCLUDED
25 #define PLAYBACK_H__6CB9696F_CF93_490A_A1B5_A4AC72FD54F0__INCLUDED
27 int
28 playback_init(const char * playlist_filename_ptr);
30 void
31 playlist_display();
33 void
34 playback_toggle();
36 void
37 playback_next();
39 void
40 playback_prev();
42 void
43 playback_destroy();
45 void
46 playback_goto(unsigned int song);
48 #endif /* #ifndef PLAYBACK_H__6CB9696F_CF93_490A_A1B5_A4AC72FD54F0__INCLUDED */