X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Pico%2Fcd%2Fcue.h;fp=Pico%2Fcd%2Fcue.h;h=0000000000000000000000000000000000000000;hb=1cfc5cc4ce06642b9bc45ca3b9d32793718e9455;hp=70ade53de91c6d3efec40f98c6ea771732a5b1bb;hpb=d158df697da66bcda57307e35fc77929cfa5053c;p=picodrive.git diff --git a/Pico/cd/cue.h b/Pico/cd/cue.h deleted file mode 100644 index 70ade53..0000000 --- a/Pico/cd/cue.h +++ /dev/null @@ -1,29 +0,0 @@ - -typedef enum -{ - CT_UNKNOWN = 0, - CT_ISO = 1, /* 2048 B/sector */ - CT_BIN = 2, /* 2352 B/sector */ - CT_MP3 = 3, - CT_WAV = 4 -} cue_track_type; - -typedef struct -{ - char *fname; - int pregap; /* pregap for current track */ - int sector_offset; /* in current file */ - int sector_xlength; - cue_track_type type; -} cue_track; - -typedef struct -{ - int track_count; - cue_track tracks[0]; -} cue_data_t; - - -cue_data_t *cue_parse(const char *fname); -void cue_destroy(cue_data_t *data); -