Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
5b476cde
Commit
5b476cde
authored
May 21, 2003
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed the --playlist option as it doesn't seem to be used
parent
e633d2a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
src/libvlc.h
src/libvlc.h
+1
-6
No files found.
src/libvlc.h
View file @
5b476cde
...
...
@@ -2,7 +2,7 @@
* libvlc.h: main libvlc header
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.h,v 1.6
7 2003/05/17 11:35:14 gbazin
Exp $
* $Id: libvlc.h,v 1.6
8 2003/05/21 13:10:05 sigmunau
Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -370,10 +370,6 @@ static char *ppsz_language[] = { "auto", "de", "en_GB", "fr", "it",
"When selected, VLC will randomly play files in the playlist until " \
"interrupted.")
#define LAUNCH_TEXT N_("Launch playlist on startup")
#define LAUNCH_LONGTEXT N_( \
"If you want VLC to start playing on startup, then enable this option.")
#define ENQUEUE_TEXT N_("Enqueue items in playlist")
#define ENQUEUE_LONGTEXT N_( \
"If you want VLC to add items to the playlist as you open them, then " \
...
...
@@ -565,7 +561,6 @@ vlc_module_begin();
/* Playlist options */
add_category_hint
(
N_
(
"Playlist"
),
NULL
,
VLC_FALSE
);
add_bool_with_short
(
"random"
,
'Z'
,
0
,
NULL
,
RANDOM_TEXT
,
RANDOM_LONGTEXT
,
VLC_FALSE
);
add_bool
(
"playlist"
,
0
,
NULL
,
LAUNCH_TEXT
,
LAUNCH_LONGTEXT
,
VLC_FALSE
);
add_bool
(
"enqueue"
,
0
,
NULL
,
ENQUEUE_TEXT
,
ENQUEUE_LONGTEXT
,
VLC_FALSE
);
add_bool
(
"loop"
,
0
,
NULL
,
LOOP_TEXT
,
LOOP_LONGTEXT
,
VLC_FALSE
);
...
...
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