diff audacious/iir.h @ 1888:802c9f8461e0 trunk

[svn] - enforce extern status here. we do not provide an inlined iir(), so that shouldn't be declared inline.
author nenolod
date Fri, 20 Oct 2006 17:00:45 -0700
parents 67cd014f35a2
children
line wrap: on
line diff
--- a/audacious/iir.h	Fri Oct 20 16:58:06 2006 -0700
+++ b/audacious/iir.h	Fri Oct 20 17:00:45 2006 -0700
@@ -51,19 +51,19 @@
 /*
  * Function prototypes
  */
-void init_iir();
-void clean_history();
-void set_gain(gint index, gint chn, float val);
-void set_preamp(gint chn, float val);
+extern void init_iir();
+extern void clean_history();
+extern void set_gain(gint index, gint chn, float val);
+extern void set_preamp(gint chn, float val);
 
 
-__inline__ int iir(gpointer * d, gint length, gint nch);
+extern int iir(gpointer * d, gint length, gint nch);
 
 #ifdef ARCH_X86
-__inline__ int round_trick(float floatvalue_to_round);
+extern int round_trick(float floatvalue_to_round);
 #endif
 #ifdef ARCH_PPC
-__inline__ int round_ppc(float x);
+extern int round_ppc(float x);
 #endif
 
 #define EQ_CHANNELS 2