diff options
author | Max Kellermann <max@duempel.org> | 2009-12-16 20:04:36 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-12-16 22:19:01 +0100 |
commit | 3679d5bd7ac3a64d342b204c821dc6ccb891ad67 (patch) | |
tree | 89aba58eb94ad9d30e24ed6866fa535218e27136 /src/playlist/cue_playlist_plugin.h | |
parent | c128f2dd7e289f32e1ecaaaf467ac0796715d1f5 (diff) | |
download | mpd-3679d5bd7ac3a64d342b204c821dc6ccb891ad67.tar.gz mpd-3679d5bd7ac3a64d342b204c821dc6ccb891ad67.tar.xz mpd-3679d5bd7ac3a64d342b204c821dc6ccb891ad67.zip |
playlist: added CUE playlist plugin
This plugin is the groundwork for MPD's future generic CUE sheet
support. That's not complete yet, e.g. there is no way for a playlist
plugin to address an arbitrary position within a music file.
Diffstat (limited to 'src/playlist/cue_playlist_plugin.h')
-rw-r--r-- | src/playlist/cue_playlist_plugin.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/playlist/cue_playlist_plugin.h b/src/playlist/cue_playlist_plugin.h new file mode 100644 index 000000000..2b5319388 --- /dev/null +++ b/src/playlist/cue_playlist_plugin.h @@ -0,0 +1,25 @@ +/* + * Copyright (C) 2003-2009 The Music Player Daemon Project + * http://www.musicpd.org + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef MPD_PLAYLIST_CUE_PLAYLIST_PLUGIN_H +#define MPD_PLAYLIST_CUE_PLAYLIST_PLUGIN_H + +extern const struct playlist_plugin cue_playlist_plugin; + +#endif |