]> git.sesse.net Git - vlc/blobdiff - include/vlc_main.h
Use var_Inherit* instead of var_CreateGet*.
[vlc] / include / vlc_main.h
index 0d2ce47e01c59fdbfb91dd6b3d10507d6622c98d..bfa7e47114045a79a39995560b66cd624bb0131e 100644 (file)
@@ -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 */
-    struct hotkey
-    {
-        const char *psz_action;
-        int i_action;
-        int i_key;
-    } *p_hotkeys;
+    const struct hotkey *p_hotkeys;
 };