FileTable

Contains the information for all files stored in the MP3 player.

Record structure

FileEntry[60] FileDetails

Field descriptions

FileDetails

The details for each song stored on the player.

Record declaration

C
typedef struct FILETABLETAG {
  FILEENTRY FileDetails[60];
} FILETABLE;

Pascal
TFileTable = packed array[0..59] of TFileEntry;