Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
679018d1
Commit
679018d1
authored
Aug 22, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move help command line options handling to a new file
parent
faa48255
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
892 additions
and
783 deletions
+892
-783
src/Makefile.am
src/Makefile.am
+1
-0
src/config/configuration.h
src/config/configuration.h
+1
-0
src/config/help.c
src/config/help.c
+887
-0
src/libvlc.c
src/libvlc.c
+1
-783
src/libvlc.h
src/libvlc.h
+2
-0
No files found.
src/Makefile.am
View file @
679018d1
...
...
@@ -456,6 +456,7 @@ SOURCES_libvlc_common = \
config/core.c
\
config/chain.c
\
config/file.c
\
config/help.c
\
config/intf.c
\
config/keys.c
\
config/cmdline.c
\
...
...
src/config/configuration.h
View file @
679018d1
...
...
@@ -36,6 +36,7 @@ int config_LoadCmdLine ( vlc_object_t *, int, const char *[], int * );
int
config_LoadConfigFile
(
vlc_object_t
*
);
#define config_LoadCmdLine(a,b,c,d) config_LoadCmdLine(VLC_OBJECT(a),b,c,d)
#define config_LoadConfigFile(a) config_LoadConfigFile(VLC_OBJECT(a))
bool
config_PrintHelp
(
vlc_object_t
*
);
int
config_SortConfig
(
void
);
void
config_UnsortConfig
(
void
);
...
...
src/config/help.c
0 → 100644
View file @
679018d1
This diff is collapsed.
Click to expand it.
src/libvlc.c
View file @
679018d1
This diff is collapsed.
Click to expand it.
src/libvlc.h
View file @
679018d1
...
...
@@ -25,6 +25,8 @@
#ifndef LIBVLC_LIBVLC_H
# define LIBVLC_LIBVLC_H 1
extern
const
char
psz_vlc_changeset
[];
typedef
struct
variable_t
variable_t
;
/* Actions (hot keys) */
...
...
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