Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
454
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
cc7e7e49
Commit
cc7e7e49
authored
13 years ago
by
Rémi Denis-Courmont
Browse files
Options
Downloads
Patches
Plain Diff
Pack struct module_config_t
parent
2011fd9a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/vlc_configuration.h
+10
-12
10 additions, 12 deletions
include/vlc_configuration.h
with
10 additions
and
12 deletions
include/vlc_configuration.h
+
10
−
12
View file @
cc7e7e49
...
...
@@ -159,9 +159,16 @@ struct module_config_t
int
*
pi_list
;
/* Idem for integers */
char
**
ppsz_list_text
;
/* Friendly names for list values */
int
i_list
;
/* Options list size */
int
i_type
;
/* Configuration type */
vlc_callback_t
pf_update_list
;
/*callback to initialize dropdownlists */
char
i_short
;
/* Optional short option name */
vlc_callback_t
pf_update_list
;
/* Callback to initialize dropdown lists */
uint8_t
i_type
;
/* Configuration type */
char
i_short
;
/* Optional short option name */
/* Misc */
unsigned
b_dirty
:
1
;
/* Dirty flag to indicate a config change */
unsigned
b_advanced
:
1
;
/* Flag to indicate an advanced option */
unsigned
b_internal
:
1
;
/* Flag to indicate option is not to be shown */
unsigned
b_unsaveable
:
1
;
/* Config should not be saved */
unsigned
b_safe
:
1
;
/* Safe to use in web plugins and playlists */
/* Actions list */
int
i_action
;
/* actions list size */
...
...
@@ -171,15 +178,6 @@ struct module_config_t
/* Deprecated */
char
*
psz_oldname
;
/* Old option name */
bool
b_removed
;
/* Misc */
bool
b_dirty
;
/* Dirty flag to indicate a config change */
bool
b_advanced
;
/* Flag to indicate an advanced option */
bool
b_internal
;
/* Flag to indicate option is not to be shown */
/* Option values loaded from config file */
bool
b_unsaveable
;
/* Config should not be saved */
bool
b_safe
;
};
/*****************************************************************************
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment