]> git.sesse.net Git - vlc/commitdiff
* Forgot to remove a prototype when creating skeleton plugin.
authorSam Hocevar <sam@videolan.org>
Sun, 18 Mar 2001 00:15:20 +0000 (00:15 +0000)
committerSam Hocevar <sam@videolan.org>
Sun, 18 Mar 2001 00:15:20 +0000 (00:15 +0000)
plugins/macosx/macosx.c

index 4ad06a64b1b496eddd86944eb1b545d566970340..7968c15ff6d4ac7781be6c46b414661b4688d367 100644 (file)
@@ -48,7 +48,6 @@ MODULE_CONFIG_END
 /*****************************************************************************
  * Capabilities defined in the other files.
  *****************************************************************************/
-void _M( aout_getfunctions )( function_list_t * p_function_list );
 void _M( vout_getfunctions )( function_list_t * p_function_list );
 void _M( intf_getfunctions )( function_list_t * p_function_list );
 
@@ -89,7 +88,6 @@ MODULE_ACTIVATE
         return( -1 );
     }
 
-    _M( aout_getfunctions )( &p_module->p_functions->aout );
     _M( vout_getfunctions )( &p_module->p_functions->vout );
     _M( intf_getfunctions )( &p_module->p_functions->intf );