diff 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
line wrap: on
line diff
--- a/src/audacious/util.h	Sun Oct 14 03:49:00 2007 -0500
+++ b/src/audacious/util.h	Sun Oct 14 03:50:08 2007 -0500
@@ -37,9 +37,9 @@
 
 G_BEGIN_DECLS
 
-#define SWAP(a, b)      { a^=b; b^=a; a^=b; }
+#include "audacious/plugin.h"
 
-typedef GHashTable INIFile;
+#define SWAP(a, b)      { a^=b; b^=a; a^=b; }
 
 typedef gboolean(*DirForeachFunc) (const gchar * path,
                                    const gchar * basename,