diff options
author | Max Kellermann <max@duempel.org> | 2009-11-06 00:41:42 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-11-06 00:41:42 +0100 |
commit | f3203b5de50dd40e014fd4d3829b8bc172976649 (patch) | |
tree | e7465b156c1ec425068947a418dfd9782ddc6798 /src/playlist/extm3u_playlist_plugin.h | |
parent | 65e56ff8291b4bc43900c7b80a86e6d39ed7a847 (diff) | |
download | mpd-f3203b5de50dd40e014fd4d3829b8bc172976649.tar.gz mpd-f3203b5de50dd40e014fd4d3829b8bc172976649.tar.xz mpd-f3203b5de50dd40e014fd4d3829b8bc172976649.zip |
playlist: added extm3u plugin
This new plugin parses extm3u files. Files without the "#EXTM3U"
header are still parsed by the plain old "m3u" plugin.
Diffstat (limited to 'src/playlist/extm3u_playlist_plugin.h')
-rw-r--r-- | src/playlist/extm3u_playlist_plugin.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/playlist/extm3u_playlist_plugin.h b/src/playlist/extm3u_playlist_plugin.h new file mode 100644 index 000000000..07f18eafa --- /dev/null +++ b/src/playlist/extm3u_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_EXTM3U_PLAYLIST_PLUGIN_H +#define MPD_PLAYLIST_EXTM3U_PLAYLIST_PLUGIN_H + +extern const struct playlist_plugin extm3u_playlist_plugin; + +#endif |