]> git.sesse.net Git - vlc/blob - modules/misc/playlist/export.c
Improvements to preferences
[vlc] / modules / misc / playlist / export.c
1 /*****************************************************************************
2  * export.c :  Playlist export module
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <vlc/vlc.h>
28
29 /***************************************************************************
30  * Prototypes
31  ***************************************************************************/
32 int Export_M3U    ( vlc_object_t *p_intf );
33 int Export_Old    ( vlc_object_t *p_intf );
34
35
36 /*****************************************************************************
37  * Module descriptor
38  *****************************************************************************/
39 vlc_module_begin();
40
41     set_category( CAT_PLAYLIST );
42     set_subcategory( SUBCAT_PLAYLIST_EXPORT );
43     add_submodule();
44         set_description( _("M3U playlist exporter") );
45         add_shortcut( "export-m3u" );
46         set_capability( "playlist export" , 0);
47         set_callbacks( Export_M3U , NULL );
48
49     add_submodule();
50         set_description( _("Old playlist exporter") );
51         add_shortcut( "export-old" );
52         set_capability( "playlist export" , 0);
53         set_callbacks( Export_Old , NULL );
54
55 vlc_module_end();