]> git.sesse.net Git - vlc/blob - src/misc/configuration.h
Did I loose the count ?
[vlc] / src / misc / configuration.h
1 /* Internal configuration prototypes and structures */
2
3 int  config_CreateDir( vlc_object_t *, const char * );
4 int  config_AutoSaveConfigFile( vlc_object_t * );
5
6 void config_Free( module_t * );
7
8 void config_SetCallbacks( module_config_t *, module_config_t *, size_t );
9 void config_UnsetCallbacks ( module_config_t *, size_t );
10
11 #define config_LoadCmdLine(a,b,c,d) __config_LoadCmdLine(VLC_OBJECT(a),b,c,d)
12 #define config_LoadConfigFile(a,b) __config_LoadConfigFile(VLC_OBJECT(a),b)
13
14 int   __config_LoadCmdLine  ( vlc_object_t *, int *, char *[], vlc_bool_t );
15 char *   config_GetHomeDir     ( void );
16 char *   config_GetUserDir     ( void );
17 int    __config_LoadConfigFile ( vlc_object_t *, const char * );