Mercurial > audlegacy
annotate audacious/pluginenum.h @ 2261:bdb2983612f0 trunk
[svn] - given some decent namespacing to playlist menus (part 1); removed last references to obsolete mainwin_accel
author | giacomo |
---|---|
date | Thu, 04 Jan 2007 05:29:13 -0800 |
parents | 329fb2453c87 |
children |
rev | line source |
---|---|
2253 | 1 /* Audacious - Cross-platform multimedia player |
2 * Copyright (C) 2005-2007 Audacious development team | |
3 * | |
4 * Based on BMP: | |
5 * Copyright (C) 2003-2004 BMP development team | |
0 | 6 * |
7 * Based on XMMS: | |
2253 | 8 * Copyright (C) 1998-2003 XMMS development team |
0 | 9 * |
10 * This program is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
2105
f18a5b617c34
[svn] - move to GPLv2-only. Based on my interpretation of the license, we are
nenolod
parents:
1882
diff
changeset
|
12 * the Free Software Foundation; under version 2 of the License. |
0 | 13 * |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
1459 | 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
0 | 22 */ |
23 #ifndef PLUGINENUM_H | |
24 #define PLUGINENUM_H | |
25 | |
26 #include <glib.h> | |
1881 | 27 #include "config.h" |
0 | 28 |
1882 | 29 #define PLUGIN_FILENAME(name) ("lib" name SHARED_SUFFIX) |
0 | 30 |
31 void plugin_system_init(void); | |
32 void plugin_system_cleanup(void); | |
33 | |
34 extern const gchar *plugin_dir_list[]; | |
35 extern GHashTable *plugin_matrix; | |
36 | |
37 #endif |