Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
36b3260b
Commit
36b3260b
authored
Jun 20, 2003
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Made the search path configuration options, directory instead of string options.
parent
41306ad7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/libvlc.h
src/libvlc.h
+3
-3
No files found.
src/libvlc.h
View file @
36b3260b
...
...
@@ -2,7 +2,7 @@
* libvlc.h: main libvlc header
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.h,v 1.7
4 2003/06/17 21:52:19 asmax
Exp $
* $Id: libvlc.h,v 1.7
5 2003/06/20 15:34:51 hartman
Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -450,8 +450,8 @@ vlc_module_begin();
add_string_from_list
(
"language"
,
"auto"
,
ppsz_language
,
NULL
,
LANGUAGE_TEXT
,
LANGUAGE_LONGTEXT
,
VLC_FALSE
);
add_bool
(
"color"
,
0
,
NULL
,
COLOR_TEXT
,
COLOR_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"advanced"
,
0
,
NULL
,
ADVANCED_TEXT
,
ADVANCED_LONGTEXT
,
VLC_FALSE
);
add_
string
(
"search-path"
,
NULL
,
NULL
,
INTF_PATH_TEXT
,
INTF_PATH_LONGTEXT
,
VLC_TRUE
);
add_
string
(
"plugin-path"
,
NULL
,
NULL
,
add_
directory
(
"search-path"
,
NULL
,
NULL
,
INTF_PATH_TEXT
,
INTF_PATH_LONGTEXT
,
VLC_TRUE
);
add_
directory
(
"plugin-path"
,
NULL
,
NULL
,
PLUGIN_PATH_TEXT
,
PLUGIN_PATH_LONGTEXT
,
VLC_TRUE
);
/* Audio options */
...
...
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