Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
36b3260b
Commit
36b3260b
authored
Jun 20, 2003
by
hartman
Browse files
* Made the search path configuration options, directory instead of string options.
parent
41306ad7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libvlc.h
View file @
36b3260b
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* libvlc.h: main libvlc header
* libvlc.h: main libvlc header
*****************************************************************************
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.h,v 1.7
4
2003/06/
17 21:52:19 as
ma
x
Exp $
* $Id: libvlc.h,v 1.7
5
2003/06/
20 15:34:51 hart
ma
n
Exp $
*
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
* Samuel Hocevar <sam@zoy.org>
...
@@ -450,8 +450,8 @@ vlc_module_begin();
...
@@ -450,8 +450,8 @@ vlc_module_begin();
add_string_from_list
(
"language"
,
"auto"
,
ppsz_language
,
NULL
,
LANGUAGE_TEXT
,
LANGUAGE_LONGTEXT
,
VLC_FALSE
);
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
(
"color"
,
0
,
NULL
,
COLOR_TEXT
,
COLOR_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"advanced"
,
0
,
NULL
,
ADVANCED_TEXT
,
ADVANCED_LONGTEXT
,
VLC_FALSE
);
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_
directory
(
"search-path"
,
NULL
,
NULL
,
INTF_PATH_TEXT
,
INTF_PATH_LONGTEXT
,
VLC_TRUE
);
add_
string
(
"plugin-path"
,
NULL
,
NULL
,
add_
directory
(
"plugin-path"
,
NULL
,
NULL
,
PLUGIN_PATH_TEXT
,
PLUGIN_PATH_LONGTEXT
,
VLC_TRUE
);
PLUGIN_PATH_TEXT
,
PLUGIN_PATH_LONGTEXT
,
VLC_TRUE
);
/* Audio options */
/* Audio options */
...
...
Write
Preview
Supports
Markdown
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