]> git.sesse.net Git - vlc/blobdiff - include/vlc_main.h
libvlc: disable audio mute on VolumeUp/Down
[vlc] / include / vlc_main.h
index 119b177bc1d960cbc48478079c615541b95ff8e7..841d15dc0ae1600ac7c779cf6ab7d5038f29b3a7 100644 (file)
@@ -28,6 +28,8 @@
 
 TYPEDEF_ARRAY(input_item_t*, input_item_array_t);
 
+struct hotkey;
+
 /*****************************************************************************
  * libvlc_internal_instance_t
  *****************************************************************************
@@ -37,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;
 };