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
f9c0df35
Commit
f9c0df35
authored
Jun 29, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove insignificant leading zeroes in config item types
Values are 8-bits.
parent
3f775a5e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
21 deletions
+21
-21
include/vlc_configuration.h
include/vlc_configuration.h
+21
-21
No files found.
include/vlc_configuration.h
View file @
f9c0df35
...
@@ -43,31 +43,31 @@ extern "C" {
...
@@ -43,31 +43,31 @@ extern "C" {
/* Configuration hint types */
/* Configuration hint types */
#define CONFIG_HINT_CATEGORY 0x0
00
2
/* Start of new category */
#define CONFIG_HINT_CATEGORY 0x02
/* Start of new category */
#define CONFIG_HINT_SUBCATEGORY 0x0
00
3
/* Start of sub-category */
#define CONFIG_HINT_SUBCATEGORY 0x03
/* Start of sub-category */
#define CONFIG_HINT_SUBCATEGORY_END 0x0
00
4
/* End of sub-category */
#define CONFIG_HINT_SUBCATEGORY_END 0x04
/* End of sub-category */
#define CONFIG_HINT_USAGE 0x0
00
5
/* Usage information */
#define CONFIG_HINT_USAGE 0x05
/* Usage information */
#define CONFIG_CATEGORY 0x0
00
6
/* Set category */
#define CONFIG_CATEGORY 0x06
/* Set category */
#define CONFIG_SUBCATEGORY 0x0
00
7
/* Set subcategory */
#define CONFIG_SUBCATEGORY 0x07
/* Set subcategory */
#define CONFIG_SECTION 0x0
00
8
/* Start of new section */
#define CONFIG_SECTION 0x08
/* Start of new section */
/* Configuration item types */
/* Configuration item types */
#define CONFIG_ITEM_STRING 0x
00
10
/* String option */
#define CONFIG_ITEM_STRING 0x10
/* String option */
/* unused 0x0020 */
/* unused 0x0020 */
#define CONFIG_ITEM_MODULE 0x
00
30
/* Module option */
#define CONFIG_ITEM_MODULE 0x30
/* Module option */
#define CONFIG_ITEM_INTEGER 0x
00
40
/* Integer option */
#define CONFIG_ITEM_INTEGER 0x40
/* Integer option */
#define CONFIG_ITEM_BOOL 0x
00
50
/* Bool option */
#define CONFIG_ITEM_BOOL 0x50
/* Bool option */
#define CONFIG_ITEM_FLOAT 0x
00
60
/* Float option */
#define CONFIG_ITEM_FLOAT 0x60
/* Float option */
#define CONFIG_ITEM_DIRECTORY 0x
00
70
/* Directory option */
#define CONFIG_ITEM_DIRECTORY 0x70
/* Directory option */
#define CONFIG_ITEM_KEY 0x
00
80
/* Hot key option */
#define CONFIG_ITEM_KEY 0x80
/* Hot key option */
#define CONFIG_ITEM_MODULE_CAT 0x
00
90
/* Module option */
#define CONFIG_ITEM_MODULE_CAT 0x90
/* Module option */
#define CONFIG_ITEM_MODULE_LIST 0x
00
A0
/* Module option */
#define CONFIG_ITEM_MODULE_LIST 0xA0
/* Module option */
#define CONFIG_ITEM_MODULE_LIST_CAT 0x
00
B0
/* Module option */
#define CONFIG_ITEM_MODULE_LIST_CAT 0xB0
/* Module option */
#define CONFIG_ITEM_FONT 0x
00
C0
/* Font option */
#define CONFIG_ITEM_FONT 0xC0
/* Font option */
#define CONFIG_ITEM_PASSWORD 0x
00
D0
/* Password option (*) */
#define CONFIG_ITEM_PASSWORD 0xD0
/* Password option (*) */
#define CONFIG_ITEM_LOADFILE 0x
00
E0
/* Read file option */
#define CONFIG_ITEM_LOADFILE 0xE0
/* Read file option */
#define CONFIG_ITEM_SAVEFILE 0x
00
F0
/* Written file option */
#define CONFIG_ITEM_SAVEFILE 0xF0
/* Written file option */
#define CONFIG_ITEM(x) (((x) & 0xF0) != 0)
#define CONFIG_ITEM(x) (((x) & 0xF0) != 0)
...
...
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