]> git.sesse.net Git - vlc/blob - modules/misc/playlist/export.c
Remove E_()
[vlc] / modules / misc / playlist / export.c
1 /*****************************************************************************
2  * export.c :  Playlist export module
3  *****************************************************************************
4  * Copyright (C) 2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc/vlc.h>
32 #include <vlc_plugin.h>
33
34 /***************************************************************************
35  * Prototypes
36  ***************************************************************************/
37 int Export_M3U    ( vlc_object_t *p_intf );
38 int Export_Old    ( vlc_object_t *p_intf );
39 int xspf_export_playlist( vlc_object_t *p_intf );
40
41 /*****************************************************************************
42  * Module descriptor
43  *****************************************************************************/
44 vlc_module_begin();
45
46     set_category( CAT_PLAYLIST );
47     set_subcategory( SUBCAT_PLAYLIST_EXPORT );
48     add_submodule();
49         set_description( _("M3U playlist exporter") );
50         add_shortcut( "export-m3u" );
51         set_capability( "playlist export" , 0);
52         set_callbacks( Export_M3U , NULL );
53
54     add_submodule();
55         set_description( _("Old playlist exporter") );
56         add_shortcut( "export-old" );
57         set_capability( "playlist export" , 0);
58         set_callbacks( Export_Old , NULL );
59
60     add_submodule();
61         set_description( _("XSPF playlist export") );
62         add_shortcut( "export-xspf" );
63         set_capability( "playlist export" , 0);
64         set_callbacks( xspf_export_playlist , NULL );
65
66 vlc_module_end();