summaryrefslogtreecommitdiff
path: root/firmware/id3.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-06-24 13:01:27 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-06-24 13:01:27 +0000
commitc7fee9bcb26f01d7d483f3b5776eeb59838902c0 (patch)
treead8a1c24fd0fd947fe2dd03ec3982ab881433e66 /firmware/id3.h
parentbdeed1ae6261fc45c2260926640bc392e79d28a1 (diff)
downloadrockbox-c7fee9bcb26f01d7d483f3b5776eeb59838902c0.tar.gz
rockbox-c7fee9bcb26f01d7d483f3b5776eeb59838902c0.zip
Added #define ID3_H
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1150 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/id3.h')
-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