Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
cb47bc07
Commit
cb47bc07
authored
May 05, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
config_GetConfigDir -> config_GetUserConfDir
parent
d6a7e489
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
include/vlc_configuration.h
include/vlc_configuration.h
+1
-1
modules/misc/lua/vlc.c
modules/misc/lua/vlc.c
+1
-1
src/config/core.c
src/config/core.c
+1
-1
src/libvlc-common.c
src/libvlc-common.c
+1
-1
src/libvlc.sym
src/libvlc.sym
+1
-1
No files found.
include/vlc_configuration.h
View file @
cb47bc07
...
...
@@ -215,7 +215,7 @@ VLC_EXPORT( void, __config_ResetAll, ( vlc_object_t * ) );
VLC_EXPORT
(
module_config_t
*
,
config_FindConfig
,(
vlc_object_t
*
,
const
char
*
)
);
VLC_EXPORT
(
const
char
*
,
config_GetDataDir
,
(
void
));
VLC_EXPORT
(
char
*
,
config_Get
Config
Dir
,
(
void
)
);
VLC_EXPORT
(
char
*
,
config_Get
UserConf
Dir
,
(
void
)
);
VLC_EXPORT
(
char
*
,
config_GetUserDataDir
,
(
void
)
);
VLC_EXPORT
(
char
*
,
config_GetCacheDir
,
(
void
)
);
...
...
modules/misc/lua/vlc.c
View file @
cb47bc07
...
...
@@ -164,7 +164,7 @@ int vlclua_homedir( lua_State *L )
}
int
vlclua_configdir
(
lua_State
*
L
)
{
char
*
dir
=
config_Get
Config
Dir
();
char
*
dir
=
config_Get
UserConf
Dir
();
lua_pushstring
(
L
,
dir
);
free
(
dir
);
return
1
;
...
...
src/config/core.c
View file @
cb47bc07
...
...
@@ -714,7 +714,7 @@ out:
/**
* Get the user's VLC configuration directory
*/
char
*
config_Get
Config
Dir
(
void
)
char
*
config_Get
UserConf
Dir
(
void
)
{
return
config_GetFooDir
(
"CONFIG"
,
".config"
);
}
...
...
src/libvlc-common.c
View file @
cb47bc07
...
...
@@ -296,7 +296,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
/* Set the config file stuff */
p_libvlc
->
psz_homedir
=
config_GetHomeDir
();
priv
->
psz_configdir
=
config_Get
Config
Dir
();
priv
->
psz_configdir
=
config_Get
UserConf
Dir
();
priv
->
psz_datadir
=
config_GetUserDataDir
();
priv
->
psz_cachedir
=
config_GetCacheDir
();
priv
->
psz_configfile
=
config_GetCustomConfigFile
(
p_libvlc
);
...
...
src/libvlc.sym
View file @
cb47bc07
...
...
@@ -51,12 +51,12 @@ __config_ChainParse
__config_ExistIntf
config_FindConfig
config_GetCacheDir
config_GetConfigDir
config_GetDataDir
__config_GetFloat
__config_GetInt
__config_GetPsz
__config_GetType
config_GetUserConfDir
config_GetUserDataDir
__config_PutFloat
__config_PutInt
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment