]> git.sesse.net Git - vlc/blob - modules/misc/playlist/export.c
6ff735d55055f6703b50bc936d24b4791cf2bdc0
[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
33 /***************************************************************************
34  * Prototypes
35  ***************************************************************************/
36 int Export_M3U    ( vlc_object_t *p_intf );
37 int Export_Old    ( vlc_object_t *p_intf );
38 int E_(xspf_export_playlist)( vlc_object_t *p_intf );
39
40 /*****************************************************************************
41  * Module descriptor
42  *****************************************************************************/
43 vlc_module_begin();
44
45     set_category( CAT_PLAYLIST );
46     set_subcategory( SUBCAT_PLAYLIST_EXPORT );
47     add_submodule();
48         set_description( _("M3U playlist exporter") );
49         add_shortcut( "export-m3u" );
50         set_capability( "playlist export" , 0);
51         set_callbacks( Export_M3U , NULL );
52
53     add_submodule();
54         set_description( _("Old playlist exporter") );
55         add_shortcut( "export-old" );
56         set_capability( "playlist export" , 0);
57         set_callbacks( Export_Old , NULL );
58
59     add_submodule();
60         set_description( _("XSPF playlist export") );
61         add_shortcut( "export-xspf" );
62         set_capability( "playlist export" , 0);
63         set_callbacks( E_(xspf_export_playlist) , NULL );
64
65 vlc_module_end();