X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_main.h;h=bfa7e47114045a79a39995560b66cd624bb0131e;hb=c60652e38ac6afd74bd8225e9dae5406f13aaa4f;hp=1d1810efedf393ec2fe3eccb6485a24d594fbb18;hpb=fbb8255dcf8ced858d59927cb17c4f577a8d9c15;p=vlc diff --git a/include/vlc_main.h b/include/vlc_main.h index 1d1810efed..bfa7e47114 100644 --- a/include/vlc_main.h +++ b/include/vlc_main.h @@ -21,7 +21,14 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ -TYPEDEF_ARRAY(input_item_t*, input_item_array_t); +/** + * \file + * This file defines libvlc_int_t internal libvlc instance + */ + +TYPEDEF_ARRAY(input_item_t*, input_item_array_t) + +struct hotkey; /***************************************************************************** * libvlc_internal_instance_t @@ -32,15 +39,7 @@ struct libvlc_int_t { VLC_COMMON_MEMBERS - /* FIXME: this is only used by the logger module! */ - global_stats_t *p_stats; ///< Global statistics - /* Structure storing the action name / key associations */ - struct hotkey - { - const char *psz_action; - int i_action; - int i_key; - } *p_hotkeys; + const struct hotkey *p_hotkeys; };