comparison src/audacious/mime.h @ 3009:9976e065e2f5 trunk

Mimetype system.
author William Pitcock <nenolod@atheme-project.org>
date Mon, 09 Jul 2007 03:18:00 -0500
parents
children 3b6d316f8b09
comparison
equal deleted inserted replaced
3008:7cea5ada1956 3009:9976e065e2f5
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 2 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, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 */
18
19 #include <glib.h>
20 #include <mowgli.h>
21
22 #include <audacious/plugin.h>
23
24 #ifndef __AUDACIOUS_MIME_H__
25 #define __AUDACIOUS_MIME_H__
26
27 G_BEGIN_DECLS
28
29 InputPlugin *mime_get_plugin(const gchar *mimetype);
30 void mime_set_plugin(const gchar *mimetype, InputPlugin *ip);
31
32 G_END_DECLS
33
34 #endif