]> git.sesse.net Git - vlc/blobdiff - modules/misc/dummy/dummy.h
threads: Make sure we don't re-create a thread if the object has already one.
[vlc] / modules / misc / dummy / dummy.h
index 744500e4049d101da1667ce4071ae5a01707b3b7..a31c872b699e55e7be5d3d5b9de16181a3ec42eb 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
 /*****************************************************************************
  * External prototypes
  *****************************************************************************/
-int  E_(OpenIntf)     ( vlc_object_t * );
+int  OpenIntf     ( vlc_object_t * );
 
-int  E_(OpenAccess)   ( vlc_object_t * );
+int  OpenAccess   ( vlc_object_t * );
 
-int  E_(OpenDemux)    ( vlc_object_t * );
-void E_(CloseDemux)   ( vlc_object_t * );
+int  OpenDemux    ( vlc_object_t * );
+void CloseDemux   ( vlc_object_t * );
 
-int  E_(OpenDecoder)  ( vlc_object_t * );
-void E_(CloseDecoder) ( vlc_object_t * );
+int  OpenDecoder  ( vlc_object_t * );
+void CloseDecoder ( vlc_object_t * );
 
-int  E_(OpenEncoder)  ( vlc_object_t * );
-void E_(CloseEncoder) ( vlc_object_t * );
+int  OpenEncoder  ( vlc_object_t * );
+void CloseEncoder ( vlc_object_t * );
 
-int  E_(OpenAudio)    ( vlc_object_t * );
+int  OpenAudio    ( vlc_object_t * );
 
-int  E_(OpenVideo)    ( vlc_object_t * );
+int  OpenVideo    ( vlc_object_t * );
 
-int  E_(OpenRenderer) ( vlc_object_t * );
+int  OpenRenderer ( vlc_object_t * );