diff options
author | Max Kellermann <max@duempel.org> | 2009-10-13 16:32:10 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-10-13 16:32:10 +0200 |
commit | f122e6d45618789741e36804b16a056d1e18818f (patch) | |
tree | 201c14e355280eb21e545b4f111d89792d8092b8 /src/playlist/lastfm_playlist_plugin.h | |
parent | 8391ac4cc8048671cfcf2a29f74729ebc0346318 (diff) | |
download | mpd-f122e6d45618789741e36804b16a056d1e18818f.tar.gz mpd-f122e6d45618789741e36804b16a056d1e18818f.tar.xz mpd-f122e6d45618789741e36804b16a056d1e18818f.zip |
playlist: added plugin for last.fm radio
This plugin will replace the last.fm input plugin, once the playlist
API is integrated into MPD.
Diffstat (limited to 'src/playlist/lastfm_playlist_plugin.h')
-rw-r--r-- | src/playlist/lastfm_playlist_plugin.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/playlist/lastfm_playlist_plugin.h b/src/playlist/lastfm_playlist_plugin.h new file mode 100644 index 000000000..871a4a043 --- /dev/null +++ b/src/playlist/lastfm_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_LASTFM_PLAYLIST_PLUGIN_H +#define MPD_PLAYLIST_LASTFM_PLAYLIST_PLUGIN_H + +extern const struct playlist_plugin lastfm_playlist_plugin; + +#endif |