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
cc7e7e49
Commit
cc7e7e49
authored
Jun 29, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pack struct module_config_t
parent
2011fd9a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
12 deletions
+10
-12
include/vlc_configuration.h
include/vlc_configuration.h
+10
-12
No files found.
include/vlc_configuration.h
View file @
cc7e7e49
...
@@ -159,10 +159,17 @@ struct module_config_t
...
@@ -159,10 +159,17 @@ struct module_config_t
int
*
pi_list
;
/* Idem for integers */
int
*
pi_list
;
/* Idem for integers */
char
**
ppsz_list_text
;
/* Friendly names for list values */
char
**
ppsz_list_text
;
/* Friendly names for list values */
int
i_list
;
/* Options list size */
int
i_list
;
/* Options list size */
int
i_type
;
/* Configuration type
*/
vlc_callback_t
pf_update_list
;
/* Callback to initialize dropdown lists
*/
vlc_callback_t
pf_update_list
;
/*callback to initialize dropdownlists
*/
uint8_t
i_type
;
/* Configuration type
*/
char
i_short
;
/* Optional short option name */
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 */
/* Actions list */
int
i_action
;
/* actions list size */
int
i_action
;
/* actions list size */
vlc_callback_t
*
ppf_action
;
/* List of possible actions for a config */
vlc_callback_t
*
ppf_action
;
/* List of possible actions for a config */
...
@@ -171,15 +178,6 @@ struct module_config_t
...
@@ -171,15 +178,6 @@ struct module_config_t
/* Deprecated */
/* Deprecated */
char
*
psz_oldname
;
/* Old option name */
char
*
psz_oldname
;
/* Old option name */
bool
b_removed
;
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
;
};
};
/*****************************************************************************
/*****************************************************************************
...
...
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