diff options
author | Max Kellermann <max@duempel.org> | 2009-01-29 21:42:10 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-29 21:42:10 +0100 |
commit | caa4d28f044d70012cd113f324e6500c0b57d491 (patch) | |
tree | 5f904a7668b602480c660d04e4cbc3b075b4be99 /src/input_mms.h | |
parent | 36ca114629d8e9bef2faff3716ccdf8f7641fd10 (diff) | |
download | mpd-caa4d28f044d70012cd113f324e6500c0b57d491.tar.gz mpd-caa4d28f044d70012cd113f324e6500c0b57d491.tar.xz mpd-caa4d28f044d70012cd113f324e6500c0b57d491.zip |
added support for the MMS protocol
This patch implements the MMS protocol, by using libmms. It is quite
experimental: it does not support seeking yet, and it is currently
using synchronous I/O, which causes MPD to hang while waiting for the
server.
Diffstat (limited to 'src/input_mms.h')
-rw-r--r-- | src/input_mms.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/input_mms.h b/src/input_mms.h new file mode 100644 index 000000000..db98ee397 --- /dev/null +++ b/src/input_mms.h @@ -0,0 +1,24 @@ +/* + * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#ifndef INPUT_MMS_H +#define INPUT_MMS_H + +extern const struct input_plugin input_plugin_mms; + +#endif |