comparison src/audacious/pluginenum.h @ 4557:2eee464379dc

Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 19 May 2008 01:29:46 +0300
parents cbb1f66d8971
children 5523b30cb122
comparison
equal deleted inserted replaced
4556:332d2992e04c 4557:2eee464379dc
20 * along with this program. If not, see <http://www.gnu.org/licenses>. 20 * along with this program. If not, see <http://www.gnu.org/licenses>.
21 * 21 *
22 * The Audacious team does not consider modular code linking to 22 * The Audacious team does not consider modular code linking to
23 * Audacious or using our public API to be a derived work. 23 * Audacious or using our public API to be a derived work.
24 */ 24 */
25 #ifndef PLUGINENUM_H 25 #ifndef AUDACIOUS_PLUGINENUM_H
26 #define PLUGINENUM_H 26 #define AUDACIOUS_PLUGINENUM_H
27 27
28 #include <glib.h> 28 #include <glib.h>
29 #include "config.h" 29 #include "config.h"
30 30
31 #define PLUGIN_FILENAME(name) (name SHARED_SUFFIX) 31 #define PLUGIN_FILENAME(name) (name SHARED_SUFFIX)
40 void plugin_set_enabled(const gchar *filename, gboolean enabled); 40 void plugin_set_enabled(const gchar *filename, gboolean enabled);
41 Plugin *plugin_get_plugin(const gchar *filename); 41 Plugin *plugin_get_plugin(const gchar *filename);
42 42
43 void plugin_set_current(Plugin *plugin); 43 void plugin_set_current(Plugin *plugin);
44 44
45 #endif 45 #endif /* AUDACIOUS_PLUGINENUM_H */