X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_main.h;h=bfa7e47114045a79a39995560b66cd624bb0131e;hb=a5c73d38fa4744962e5fee55abcd56b8237e6c08;hp=44299df77333ff09640560ad8919d8645b61f383;hpb=e1e7a51039684334cde1bda68315fc21dabee705;p=vlc diff --git a/include/vlc_main.h b/include/vlc_main.h index 44299df773..bfa7e47114 100644 --- a/include/vlc_main.h +++ b/include/vlc_main.h @@ -26,7 +26,9 @@ * This file defines libvlc_int_t internal libvlc instance */ -TYPEDEF_ARRAY(input_item_t*, input_item_array_t); +TYPEDEF_ARRAY(input_item_t*, input_item_array_t) + +struct hotkey; /***************************************************************************** * libvlc_internal_instance_t @@ -38,11 +40,6 @@ struct libvlc_int_t VLC_COMMON_MEMBERS /* Structure storing the action name / key associations */ - const struct hotkey - { - const char *psz_action; - int i_action; - int i_key; - } *p_hotkeys; + const struct hotkey *p_hotkeys; };