mmplaylist_entry_t

Playlist entry information

Synopsis:

#include <mm/mmplaylist.h>
typedef struct mmplaylist_entry {
    uint32_t props;
    char name[];
} mmplaylist_entry_t;

Data:

uint32_t props
The properties of the entry.
char name
The extracted entry. This string is null-terminated.

Library:

libmmplaylist

Description:

The mmplaylist_entry_t data structure stores a playlist entry. This structure is filled in and returned to the client by mmplaylist_entry_next_get(). When finished using this information, the client must free the structure by calling mmplaylist_entry_release().