mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-10 05:32:40 -05:00
Now uses MAX_PATH
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1378 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
529e166888
commit
3a62b56740
1 changed files with 2 additions and 1 deletions
|
|
@ -21,13 +21,14 @@
|
||||||
#define __PLAYLIST_H__
|
#define __PLAYLIST_H__
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
#include "file.h"
|
||||||
|
|
||||||
/* playlist data */
|
/* playlist data */
|
||||||
|
|
||||||
#define MAX_PLAYLIST_SIZE 10000
|
#define MAX_PLAYLIST_SIZE 10000
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
char filename[256]; /* path name of m3u playlist on disk */
|
char filename[MAX_PATH]; /* path name of m3u playlist on disk */
|
||||||
int indices[MAX_PLAYLIST_SIZE]; /* array of indices */
|
int indices[MAX_PLAYLIST_SIZE]; /* array of indices */
|
||||||
int index; /* index of *NEXT* track to play */
|
int index; /* index of *NEXT* track to play */
|
||||||
int seed; /* random seed */
|
int seed; /* random seed */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue