Commit f2ba521b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Export config_Get*Dir

parent 5cd6f285
...@@ -215,6 +215,9 @@ VLC_EXPORT( void, __config_ResetAll, ( vlc_object_t * ) ); ...@@ -215,6 +215,9 @@ VLC_EXPORT( void, __config_ResetAll, ( vlc_object_t * ) );
VLC_EXPORT( module_config_t *, config_FindConfig,( vlc_object_t *, const char * ) ); VLC_EXPORT( module_config_t *, config_FindConfig,( vlc_object_t *, const char * ) );
VLC_EXPORT(const char *, config_GetDataDir, ( void )); VLC_EXPORT(const char *, config_GetDataDir, ( void ));
VLC_EXPORT(char *, config_GetConfigDir, ( void ) );
VLC_EXPORT(char *, config_GetUserDataDir, ( void ) );
VLC_EXPORT(char *, config_GetCacheDir, ( void ) );
VLC_EXPORT( void, __config_AddIntf, ( vlc_object_t *, const char * ) ); VLC_EXPORT( void, __config_AddIntf, ( vlc_object_t *, const char * ) );
VLC_EXPORT( void, __config_RemoveIntf, ( vlc_object_t *, const char * ) ); VLC_EXPORT( void, __config_RemoveIntf, ( vlc_object_t *, const char * ) );
......
...@@ -44,9 +44,6 @@ void config_UnsetCallbacks( module_config_t *, size_t ); ...@@ -44,9 +44,6 @@ void config_UnsetCallbacks( module_config_t *, size_t );
int __config_LoadCmdLine ( vlc_object_t *, int *, const char *[], bool ); int __config_LoadCmdLine ( vlc_object_t *, int *, const char *[], bool );
char *config_GetHomeDir ( void ); char *config_GetHomeDir ( void );
char *config_GetConfigDir ( void );
char *config_GetUserDataDir( void );
char *config_GetCacheDir ( void );
char *config_GetConfigFile ( libvlc_int_t * ); char *config_GetConfigFile ( libvlc_int_t * );
char *config_GetCustomConfigFile( libvlc_int_t * ); char *config_GetCustomConfigFile( libvlc_int_t * );
int __config_LoadConfigFile( vlc_object_t *, const char * ); int __config_LoadConfigFile( vlc_object_t *, const char * );
......
...@@ -50,11 +50,14 @@ config_ChainDestroy ...@@ -50,11 +50,14 @@ config_ChainDestroy
__config_ChainParse __config_ChainParse
__config_ExistIntf __config_ExistIntf
config_FindConfig config_FindConfig
config_GetCacheDir
config_GetConfigDir
config_GetDataDir config_GetDataDir
__config_GetFloat __config_GetFloat
__config_GetInt __config_GetInt
__config_GetPsz __config_GetPsz
__config_GetType __config_GetType
config_GetUserDataDir
__config_PutFloat __config_PutFloat
__config_PutInt __config_PutInt
__config_PutPsz __config_PutPsz
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment