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, so you can determine its length and the size of the entire structure.

Library:

libmmplaylist

Description:

This data structure is used to return a playlist entry to the client application.