X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Finstance.h;h=be3fa87ab7e09475843b2714943a74ed59752cfa;hb=cfbef984de0dc53c8b882d7706556656b9934de2;hp=c3e14ae813250da49075a9d8da11765c7e60813c;hpb=07c6d84a23c9043e2334987fc8533f68e5e23183;p=melted_gui diff --git a/src/instance.h b/src/instance.h index c3e14ae..be3fa87 100644 --- a/src/instance.h +++ b/src/instance.h @@ -98,18 +98,25 @@ typedef enum playlist_item_type #define PLAYLIST_ITEM_ERROR_LIB 1 #define PLAYLIST_ITEM_ERROR_CUE 2 +/** + * @anchor playlist_item_t + * + * fu + */ typedef struct playlist_item { - char id[PATH_MAX]; - char title[PATH_MAX]; +/*@{*/ + char id[PATH_MAX]; /**< id of item, i.e. internal id or filename */ + char title[PATH_MAX]; /**< title */ int in; int dur; - int player; - playlist_item_type_t type; - int omn_idx; + int player; /**< player index that item currenly associated, -1 otherwise */ + playlist_item_type_t type; /**< block type of item */ + int int_idx; /**< internal playlist index */ int omn_offset; - int error; - int del; + int error; /**< flag indicates if any error occured with item */ + int del; /**< */ +/*@}*/ } playlist_item_t; #define MAX_PLAYERS 4