]> git.sesse.net Git - vlc/blobdiff - plugins/esd/aout_esd.c
* Ported Glide and MGA plugins to the new module API. MGA never worked,
[vlc] / plugins / esd / aout_esd.c
index 1387645d88b632f423c56274bae986a7ee9f282a..92b2d2f8116e22421677e795b5a2cfd696f47b42 100644 (file)
@@ -20,6 +20,9 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  *****************************************************************************/
 
+#define MODULE_NAME esd
+#include "modules_inner.h"
+
 /* TODO:
  *
  * - use the libesd function to get latency when it's not buggy anymore
@@ -80,7 +83,7 @@ static void    aout_Close       ( aout_thread_t *p_aout );
  * Functions exported as capabilities. They are declared as static so that
  * we don't pollute the namespace too much.
  *****************************************************************************/
-void aout_getfunctions( function_list_t * p_function_list )
+void _M( aout_getfunctions )( function_list_t * p_function_list )
 {
     p_function_list->pf_probe = aout_Probe;
     p_function_list->functions.aout.pf_open = aout_Open;