comparison src/audacious/custom_uri.h @ 3340:a0c93cb34598 trunk

Add functions for custom uri support of input plugins
author Christian Birchinger <joker@netswarm.net>
date Sun, 12 Aug 2007 20:18:04 +0200
parents
children 2eee464379dc
comparison
equal deleted inserted replaced
3339:c23513d0ee17 3340:a0c93cb34598
1 /*
2 * Audacious
3 * Copyright (c) 2007 William Pitcock
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; under version 3 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses>.
16 *
17 * The Audacious team does not consider modular code linking to
18 * Audacious or using our public API to be a derived work.
19 */
20
21 #include <glib.h>
22 #include <mowgli.h>
23
24 #include <audacious/plugin.h>
25
26 #ifndef __AUDACIOUS_CUSTOM_URI_H__
27 #define __AUDACIOUS_CUSTOM_URI_H__
28
29 G_BEGIN_DECLS
30
31 InputPlugin *uri_get_plugin(const gchar *filename);
32 void uri_set_plugin(const gchar *uri, InputPlugin *ip);
33
34 G_END_DECLS
35
36 #endif