]> git.sesse.net Git - vlc/blob - plugins/kde/kde.cpp
* libdvdcss enhancements by Billy Biggs <vektor@dumbterm.net>. This breaks
[vlc] / plugins / kde / kde.cpp
1 /*****************************************************************************
2  * kde.cpp : KDE plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: kde.cpp,v 1.3 2001/07/11 02:01:04 sam Exp $
6  *
7  * Authors: Andres <dae@chez.com> Sun Mar 25 2001
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 #define MODULE_NAME kde 
24 #include "intf_plugin.h"
25
26 extern "C"
27 {
28
29 /*****************************************************************************
30  * Capabilities defined in the other files.
31  *****************************************************************************/
32 void _M( intf_getfunctions )( function_list_t * p_function_list );
33
34 /*****************************************************************************
35  * Build configuration tree.
36  *****************************************************************************/
37 MODULE_CONFIG_START
38 ADD_WINDOW( "Configuration for KDE module" )
39     ADD_COMMENT( "Ha, ha -- nothing to configure yet" )
40 MODULE_CONFIG_STOP
41
42 MODULE_INIT_START
43     p_module->i_capabilities = MODULE_CAPABILITY_NULL
44                                 | MODULE_CAPABILITY_INTF;
45     p_module->psz_longname = "KDE interface module";
46 MODULE_INIT_STOP
47
48 MODULE_ACTIVATE_START
49     _M( intf_getfunctions )( &p_module->p_functions->intf );
50 MODULE_ACTIVATE_STOP
51
52 MODULE_DEACTIVATE_START
53 MODULE_DEACTIVATE_STOP
54
55 } /* extern "C" */
56