1 /*****************************************************************************
2 * configuration.h management of the modules configuration
3 *****************************************************************************
4 * Copyright (C) 2007 the VideoLAN team
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 *****************************************************************************/
21 #ifndef LIBVLC_CONFIGURATION_H
22 # define LIBVLC_CONFIGURATION_H 1
28 /* Internal configuration prototypes and structures */
30 int config_CreateDir( vlc_object_t *, const char * );
31 int config_AutoSaveConfigFile( vlc_object_t * );
33 void config_Free( module_t * );
35 void config_SetCallbacks( module_config_t *, module_config_t *, size_t );
36 void config_UnsetCallbacks ( module_config_t *, size_t );
38 #define config_LoadCmdLine(a,b,c,d) __config_LoadCmdLine(VLC_OBJECT(a),b,c,d)
39 #define config_LoadConfigFile(a,b) __config_LoadConfigFile(VLC_OBJECT(a),b)
41 int __config_LoadCmdLine ( vlc_object_t *, int *, char *[], vlc_bool_t );
42 char * config_GetHomeDir ( void );
43 char * config_GetUserDir ( void );
44 int __config_LoadConfigFile ( vlc_object_t *, const char * );
46 int IsConfigStringType (int type);