]> git.sesse.net Git - vlc/blobdiff - plugins/dummy/intf_dummy.c
* Fixed the BeOS compile typo.
[vlc] / plugins / dummy / intf_dummy.c
index de62fa504cac784bb36b94472ddb837bc2a3e9fb..0ff9e0488e44dba79c2ae8820f1819c51d45b31f 100644 (file)
@@ -2,6 +2,7 @@
  * intf_dummy.c: dummy interface plugin
  *****************************************************************************
  * Copyright (C) 2000, 2001 VideoLAN
+ * $Id: intf_dummy.c,v 1.8 2001/05/30 17:03:12 sam Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -20,6 +21,9 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  *****************************************************************************/
 
+#define MODULE_NAME dummy
+#include "modules_inner.h"
+
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
 #include "threads.h"
 #include "mtime.h"
 #include "tests.h"
-#include "modules.h"
 
 #include "intf_msg.h"
 #include "interface.h"
 
+#include "modules.h"
+
 #include "main.h"
+#include "modules_export.h"
 
 /*****************************************************************************
  * intf_sys_t: description and status of FB interface
@@ -59,7 +65,7 @@ static void intf_Run       ( intf_thread_t *p_intf );
  * Functions exported as capabilities. They are declared as static so that
  * we don't pollute the namespace too much.
  *****************************************************************************/
-void intf_getfunctions( function_list_t * p_function_list )
+void _M( intf_getfunctions )( function_list_t * p_function_list )
 {
     p_function_list->pf_probe = intf_Probe;
     p_function_list->functions.intf.pf_open  = intf_Open;