summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/id3.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/id3.h b/firmware/id3.h
index 9c8d54aab8..604be25ab4 100644
--- a/firmware/id3.h
+++ b/firmware/id3.h
@@ -16,6 +16,9 @@
16 * KIND, either express or implied. 16 * KIND, either express or implied.
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19#ifndef ID3_H
20#define ID3_H
21
19struct mp3entry { 22struct mp3entry {
20 char *path; 23 char *path;
21 char *title; 24 char *title;
@@ -38,3 +41,5 @@ struct mp3entry {
38typedef struct mp3entry mp3entry; 41typedef struct mp3entry mp3entry;
39 42
40bool mp3info(mp3entry *entry, char *filename); 43bool mp3info(mp3entry *entry, char *filename);
44
45#endif