X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fdemux%2Fplaylist%2Fplaylist.h;h=251826e2bad32724cb981c977c1e6a4dd8111f65;hb=667f188961341ded83b0b17527a71961701e945f;hp=061701a9f6e8005e0dc9a6063e49bd879e230410;hpb=eb22c2983bf039a74f9f6143a640438c8a16819d;p=vlc diff --git a/modules/demux/playlist/playlist.h b/modules/demux/playlist/playlist.h index 061701a9f6..251826e2ba 100644 --- a/modules/demux/playlist/playlist.h +++ b/modules/demux/playlist/playlist.h @@ -1,10 +1,10 @@ /***************************************************************************** * playlist.h: Playlist import module common functions ***************************************************************************** - * Copyright (C) 2004 VideoLAN + * Copyright (C) 2004 the VideoLAN team * $Id$ * - * Authors: Sigmund Augdal + * Authors: Sigmund Augdal Helberg * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -21,12 +21,27 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. *****************************************************************************/ -char *ProcessMRL( char *, char * ); -char *FindPrefix( demux_t * ); +char *E_(ProcessMRL)( char *, char * ); +char *E_(FindPrefix)( demux_t * ); -int Import_Old ( vlc_object_t * ); -int Import_M3U ( vlc_object_t * ); +vlc_bool_t E_(FindItem)( demux_t *, playlist_t *, playlist_item_t **); -void Close_M3U ( vlc_object_t * ); -int Import_PLS ( vlc_object_t * ); -void Close_PLS ( vlc_object_t * ); +int E_(Import_Old) ( vlc_object_t * ); + +int E_(Import_Native) ( vlc_object_t * ); +void E_(Close_Native) ( vlc_object_t * ); + +int E_(Import_M3U) ( vlc_object_t * ); +void E_(Close_M3U) ( vlc_object_t * ); + +int E_(Import_PLS) ( vlc_object_t * ); +void E_(Close_PLS) ( vlc_object_t * ); + +int E_(Import_B4S) ( vlc_object_t * ); +void E_(Close_B4S) ( vlc_object_t * ); + +int E_(Import_DVB) ( vlc_object_t * ); +void E_(Close_DVB) ( vlc_object_t * ); + +int E_(Import_podcast) ( vlc_object_t * ); +void E_(Close_podcast) ( vlc_object_t * );