]> git.sesse.net Git - vlc/blobdiff - include/vlc_playlist.h
llvm seems to solve our cancellation issues. Revert "Tentative hack for OSX msleep...
[vlc] / include / vlc_playlist.h
index 6fbd4a150ea3dc2fce791dca9edd47f4797b59cc..fc2b8089865178e0d2d7f31fdc1afa5b6c72324b 100644 (file)
@@ -116,11 +116,18 @@ TYPEDEF_ARRAY(playlist_item_t*, playlist_item_array_t);
  *
  *
  * The playlist defines the following event variables:
+ *
  * - "item-change": It will contains the input_item_t->i_id of a changed input
  * item monitored by the playlist.
+ * * - "item-current": It will contains a input_item_t->i_id of the current
+ * item being played.
+ *
+ * - "playlist-item-append": It will contains a pointer to a playlist_add_t.
+ * - "playlist-item-deleted": It will contains the playlist_item_t->i_id of a deleted
+ * playlist_item_t.
  *
  * XXX Be really carefull, playlist_item_t->i_id and input_item_t->i_id are not
- * the same.
+ * the same. Yes, the situation is pretty bad.
  *
  * @{
  */
@@ -181,9 +188,8 @@ struct playlist_t
 /** Helper to add an item */
 struct playlist_add_t
 {
-    int i_node;
-    int i_item;
-    int i_position;
+    int i_node; /**< Playist id of the parent node */
+    int i_item; /**< Playist id of the playlist_item_t */
 };
 
 enum