X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_main.h;h=bfa7e47114045a79a39995560b66cd624bb0131e;hb=12ade3e3bc975d5426ba4af155b7372c31093b31;hp=2168788368a5f57418be705b39b85c250cd488dc;hpb=82921f3c8dae23178b64089b22502bb8f528e7e6;p=vlc diff --git a/include/vlc_main.h b/include/vlc_main.h index 2168788368..bfa7e47114 100644 --- a/include/vlc_main.h +++ b/include/vlc_main.h @@ -21,11 +21,14 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ -#if !defined( __LIBVLC__ ) - #error You are not libvlc or one of its plugins. You cannot include this file -#endif +/** + * \file + * 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 @@ -36,18 +39,7 @@ struct libvlc_int_t { VLC_COMMON_MEMBERS - /* Global properties */ - char * psz_homedir; ///< user's home directory - - 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; };