3009
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
1 /*
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
2 * Audacious
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
3 * Copyright (c) 2007 William Pitcock
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
4 *
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
5 * This program is free software; you can redistribute it and/or modify
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
6 * it under the terms of the GNU General Public License as published by
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
7 * the Free Software Foundation; under version 2 of the License.
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
8 *
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
9 * This program is distributed in the hope that it will be useful,
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
12 * GNU General Public License for more details.
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
13 *
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
14 * You should have received a copy of the GNU General Public License
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
15 * along with this program; if not, write to the Free Software
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
17 */
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
18
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
19 #include <glib.h>
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
20 #include <mowgli.h>
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
21
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
22 #include <audacious/plugin.h>
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
23
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
24 #ifndef __AUDACIOUS_MIME_H__
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
25 #define __AUDACIOUS_MIME_H__
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
26
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
27 G_BEGIN_DECLS
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
28
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
29 InputPlugin *mime_get_plugin(const gchar *mimetype);
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
30 void mime_set_plugin(const gchar *mimetype, InputPlugin *ip);
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
31
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
32 G_END_DECLS
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
33
|
William Pitcock <nenolod@atheme-project.org>
parents:
diff
changeset
|
34 #endif
|