]> git.sesse.net Git - vlc/blobdiff - modules/misc/dummy/interface.c
Removes trailing spaces. Removes tabs.
[vlc] / modules / misc / dummy / interface.c
index b84f043232570c0eccdb253179917941ca184db8..f30709479f07e5d192fffde50f800563de2ec85d 100644 (file)
@@ -10,7 +10,7 @@
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <stdlib.h>                                      /* malloc(), free() */
-#include <string.h>
 
 #include <vlc/vlc.h>
-#include <vlc/intf.h>
+#include <vlc_interface.h>
 
-/*****************************************************************************
- * Local prototypes.
- *****************************************************************************/
-static void Run   ( intf_thread_t * );
+#include "dummy.h"
 
 /*****************************************************************************
  * Open: initialize dummy interface
@@ -49,22 +44,9 @@ int  E_(OpenIntf) ( vlc_object_t *p_this )
         CONSOLE_INTRO_MSG;
 #endif
 
-    msg_Info( p_intf, "Using the dummy interface module..." );
+    msg_Info( p_intf, "using the dummy interface module..." );
 
-    p_intf->pf_run = Run;
+    p_intf->pf_run = NULL;
 
     return VLC_SUCCESS;
 }
-
-/*****************************************************************************
- * Run: main loop
- *****************************************************************************/
-static void Run( intf_thread_t *p_intf )
-{
-    while( !p_intf->b_die )
-    {
-        /* Wait a bit */
-        msleep( INTF_IDLE_SLEEP );
-    }
-}
-