X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_plugin.h;h=5f0a80c966429521f91c18b6fefa544fe4257def;hb=fe5240b6aaa1034c7902cd189680bd2ec31ae670;hp=5595e20879d91ae0578f43b34e2f1c625e28536b;hpb=b9259bb0c0d86256ae5610b3072e3910edc405d3;p=vlc diff --git a/include/vlc_plugin.h b/include/vlc_plugin.h index 5595e20879..5f0a80c966 100644 --- a/include/vlc_plugin.h +++ b/include/vlc_plugin.h @@ -119,8 +119,8 @@ enum vlc_module_properties /** * Current plugin ABI version */ -# define MODULE_SYMBOL 1_0_0d -# define MODULE_SUFFIX "__1_0_0d" +# define MODULE_SYMBOL 1_1_0a +# define MODULE_SUFFIX "__1_1_0a" /***************************************************************************** * Add a few defines. You do not want to read this section. Really. @@ -315,6 +315,10 @@ enum vlc_module_properties add_string_inner( CONFIG_ITEM_DIRECTORY, name, text, longtext, advc, \ p_callback, value ) +#define add_font( name, value, p_callback, text, longtext, advc )\ + add_string_inner( CONFIG_ITEM_FONT, name, text, longtext, advc, \ + p_callback, value ) + #define add_module( name, psz_caps, value, p_callback, text, longtext, advc ) \ add_string_inner( CONFIG_ITEM_MODULE, name, text, longtext, advc, \ p_callback, value ) \ @@ -411,13 +415,6 @@ enum vlc_module_properties (const char *const *)(list_text), \ (vlc_callback_t)(list_update_func)); -#define change_float_list( list, list_text, list_update_func ) \ - vlc_config_set (p_config, VLC_CONFIG_LIST, domain, \ - (size_t)(sizeof (list) / sizeof (float)), \ - (const float *)(list), \ - (const char *const *)(list_text), \ - (vlc_callback_t)(list_update_func)); - #define change_integer_range( minv, maxv ) \ vlc_config_set (p_config, VLC_CONFIG_RANGE, (int)(minv), (int)(maxv)); @@ -459,7 +456,7 @@ enum vlc_module_properties "\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x28\x43\x29\x20\x74\x68" \ "\x65\x20\x56\x69\x64\x65\x6f\x4c\x41\x4e\x20\x56\x4c\x43\x20\x6d" \ "\x65\x64\x69\x61\x20\x70\x6c\x61\x79\x65\x72\x20\x64\x65\x76\x65" \ - "\x6c\x6f\x70\x70\x65\x72\x73" ) + "\x6c\x6f\x70\x65\x72\x73" ) #elif !defined (VLC_COPYRIGHT_EXPORT) # define VLC_COPYRIGHT_EXPORT #endif