summaryrefslogtreecommitdiff
path: root/apps/cuesheet.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/cuesheet.h')
-rw-r--r--apps/cuesheet.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/apps/cuesheet.h b/apps/cuesheet.h
index 41ee9be397..22ad92fdd3 100644
--- a/apps/cuesheet.h
+++ b/apps/cuesheet.h
@@ -52,14 +52,6 @@ struct cuesheet {
52 struct cue_track_info *curr_track; 52 struct cue_track_info *curr_track;
53}; 53};
54 54
55extern struct cuesheet *curr_cue;
56
57/* returns true if cuesheet support is initialised */
58bool cuesheet_is_enabled(void);
59
60/* allocates the cuesheet buffer */
61void cuesheet_init(void);
62
63/* looks if there is a cuesheet file that has a name matching "trackpath" */ 55/* looks if there is a cuesheet file that has a name matching "trackpath" */
64bool look_for_cuesheet_file(const char *trackpath, char *found_cue_path); 56bool look_for_cuesheet_file(const char *trackpath, char *found_cue_path);
65 57
@@ -90,4 +82,7 @@ void cue_draw_markers(struct screen *screen, unsigned long tracklen,
90 int x1, int x2, int y, int h); 82 int x1, int x2, int y, int h);
91#endif 83#endif
92 84
85/* check if the subtrack has changed */
86bool cuesheet_subtrack_changed(struct mp3entry *id3);
87
93#endif 88#endif