# HG changeset patch # User William Pitcock # Date 1192351808 18000 # Node ID ffc8e51efe0c6b4eefbb362bbcb76c3cbd3c529b # Parent d5580c6bca31a05f91b0a2762b2e47dacd8eaed3 fix some oopses diff -r d5580c6bca31 -r ffc8e51efe0c src/audacious/plugin.h --- a/src/audacious/plugin.h Sun Oct 14 03:49:00 2007 -0500 +++ b/src/audacious/plugin.h Sun Oct 14 03:50:08 2007 -0500 @@ -89,6 +89,8 @@ typedef struct _InputPlayback InputPlayback; +typedef GHashTable INIFile; + #include "audacious/playlist.h" #include "audacious/input.h" #include "audacious/mime.h" diff -r d5580c6bca31 -r ffc8e51efe0c src/audacious/util.h --- 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,