Commit f7d11175 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

add_key: remove callback parameter

parent f98a66ce
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# The current full list of config strings vlc understands is always in vlc's # The current full list of config strings vlc understands is always in vlc's
# src/libvlc.h file. Look for lines like: # src/libvlc.h file. Look for lines like:
# add_key( "key-fullscreen", KEY_FULLSCREEN, NULL, FULLSCREEN_KEY_TEXT, # add_key( "key-fullscreen", KEY_FULLSCREEN, FULLSCREEN_KEY_TEXT,
# FULLSCREEN_KEY_LONGTEXT, VLC_FALSE ); # FULLSCREEN_KEY_LONGTEXT, VLC_FALSE );
# You will need the first argument of these lines. in this case: key-fullscreen # You will need the first argument of these lines. in this case: key-fullscreen
......
...@@ -348,7 +348,7 @@ enum vlc_module_properties ...@@ -348,7 +348,7 @@ enum vlc_module_properties
#define add_integer( name, value, text, longtext, advc ) \ #define add_integer( name, value, text, longtext, advc ) \
add_int_inner( CONFIG_ITEM_INTEGER, name, text, longtext, advc, value ) add_int_inner( CONFIG_ITEM_INTEGER, name, text, longtext, advc, value )
#define add_key( name, value, p_callback, text, longtext, advc ) \ #define add_key( name, value, text, longtext, advc ) \
add_int_inner( CONFIG_ITEM_KEY, name, text, longtext, advc, value ) \ add_int_inner( CONFIG_ITEM_KEY, name, text, longtext, advc, value ) \
add_int_inner( CONFIG_ITEM_KEY, "global-" name, text, longtext, advc, \ add_int_inner( CONFIG_ITEM_KEY, "global-" name, text, longtext, advc, \
KEY_UNSET ) KEY_UNSET )
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment