From 3df58d30e1d50cde3eb9a30b9d1beb331685fc50 Mon Sep 17 00:00:00 2001 From: Björn Stenberg Date: Fri, 23 Aug 2002 20:04:31 +0000 Subject: Removed typedef git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1958 a1c6a512-1295-4272-9138-f99709370657 --- apps/playlist.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/playlist.h') diff --git a/apps/playlist.h b/apps/playlist.h index f44372e76d..86de8265c9 100644 --- a/apps/playlist.h +++ b/apps/playlist.h @@ -26,7 +26,7 @@ /* playlist data */ -typedef struct +struct playlist_info { char filename[MAX_PATH]; /* path name of m3u playlist on disk */ int dirlen; /* Length of the path to the playlist file */ @@ -35,9 +35,9 @@ typedef struct int seed; /* random seed */ int amount; /* number of tracks in the index */ bool in_ram; /* True if the playlist is RAM-based */ -} playlist_info_t; +}; -extern playlist_info_t playlist; +extern struct playlist_info playlist; extern bool playlist_shuffle; int play_list(char *dir, char *file, int start_index, -- cgit v1.2.3