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
307361a5
Commit
307361a5
authored
Aug 19, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
What is add_password_inner supposed to be, except a reinvention of add_string_inner?
parent
8f9a8755
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
include/vlc_configuration.h
include/vlc_configuration.h
+1
-5
No files found.
include/vlc_configuration.h
View file @
307361a5
...
@@ -264,10 +264,6 @@ VLC_EXPORT(const char *, config_GetDataDir, ( void ));
...
@@ -264,10 +264,6 @@ VLC_EXPORT(const char *, config_GetDataDir, ( void ));
add_typename_inner( type, name, text, longtext, advc, cb ); \
add_typename_inner( type, name, text, longtext, advc, cb ); \
p_config[i_config].value.psz = v
p_config[i_config].value.psz = v
#define add_password_inner( type, name, text, longtext, advc, cb, v ) \
add_typename_inner( type, name, text, longtext, advc, cb ); \
p_config[i_config].value.psz = v
#define add_int_inner( type, name, text, longtext, advc, cb, v ) \
#define add_int_inner( type, name, text, longtext, advc, cb, v ) \
add_typename_inner( type, name, text, longtext, advc, cb ); \
add_typename_inner( type, name, text, longtext, advc, cb ); \
p_config[i_config].value.i = v
p_config[i_config].value.i = v
...
@@ -300,7 +296,7 @@ VLC_EXPORT(const char *, config_GetDataDir, ( void ));
...
@@ -300,7 +296,7 @@ VLC_EXPORT(const char *, config_GetDataDir, ( void ));
add_string_inner( CONFIG_ITEM_STRING, name, text, longtext, advc, p_callback, value )
add_string_inner( CONFIG_ITEM_STRING, name, text, longtext, advc, p_callback, value )
#define add_password( name, value, p_callback, text, longtext, advc ) \
#define add_password( name, value, p_callback, text, longtext, advc ) \
add_
password
_inner( CONFIG_ITEM_PASSWORD, name, text, longtext, advc, p_callback, value )
add_
string
_inner( CONFIG_ITEM_PASSWORD, name, text, longtext, advc, p_callback, value )
#define add_file( name, value, p_callback, text, longtext, advc ) \
#define add_file( name, value, p_callback, text, longtext, advc ) \
add_string_inner( CONFIG_ITEM_FILE, name, text, longtext, advc, p_callback, value )
add_string_inner( CONFIG_ITEM_FILE, name, text, longtext, advc, p_callback, value )
...
...
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