comparison src/audacious/util.h @ 3747:ffc8e51efe0c

fix some oopses
author William Pitcock <nenolod@atheme.org>
date Sun, 14 Oct 2007 03:50:08 -0500
parents 0e5da33a32b7
children d24d28e76588
comparison
equal deleted inserted replaced
3746:d5580c6bca31 3747:ffc8e51efe0c
35 #include <glib.h> 35 #include <glib.h>
36 #include <gtk/gtk.h> 36 #include <gtk/gtk.h>
37 37
38 G_BEGIN_DECLS 38 G_BEGIN_DECLS
39 39
40 #include "audacious/plugin.h"
41
40 #define SWAP(a, b) { a^=b; b^=a; a^=b; } 42 #define SWAP(a, b) { a^=b; b^=a; a^=b; }
41
42 typedef GHashTable INIFile;
43 43
44 typedef gboolean(*DirForeachFunc) (const gchar * path, 44 typedef gboolean(*DirForeachFunc) (const gchar * path,
45 const gchar * basename, 45 const gchar * basename,
46 gpointer user_data); 46 gpointer user_data);
47 47