]> git.sesse.net Git - vlc/blobdiff - include/vlc/libvlc_structures.h
libvlc.h: Don't expose libvlc_tree. It will get deleted.
[vlc] / include / vlc / libvlc_structures.h
index 909c30edd9f9ba2b68575d738fe8818539a70f30..e6b8f1942e9d87f5b30360eef960ffc5270d4778 100644 (file)
@@ -52,22 +52,6 @@ typedef struct libvlc_exception_t
 
 /**@} */
 
-/*****************************************************************************
- * Tree
- *****************************************************************************/
-/** defgroup libvlc_tree Tree
- * \ingroup libvlc
- * LibVLC Tree 
- * @{
- */
-
-typedef void (*libvlc_retain_function)(void *);
-typedef void (*libvlc_release_function)(void *);
-
-typedef struct libvlc_tree_t libvlc_tree_t;
-
-/**@} */
-
 /*****************************************************************************
  * Tag
  *****************************************************************************/
@@ -313,10 +297,6 @@ typedef enum libvlc_event_type_t {
     libvlc_MediaListPlayerNextItemSet,
     libvlc_MediaListPlayerStopped,
 
-    libvlc_TreeSubtreeAdded,
-    libvlc_TreeSubtreeDeleted,
-    libvlc_TreeItemValueChanged,
-
 } libvlc_event_type_t;
 
 /**
@@ -359,23 +339,6 @@ typedef struct libvlc_event_t
             libvlc_media_descriptor_t * item;
             int index;
         } media_list_item_deleted;
-
-        /* Tree */
-        struct
-        {
-            libvlc_tree_t * subtree;
-            int index;
-        } tree_subtree_added;
-        struct
-        {
-            libvlc_tree_t * subtree;
-            int index;
-        } tree_subtree_deleted;
-        struct
-        {
-            void * new_value;
-        } tree_item_value_changed;
-
     } u;
 } libvlc_event_t;