diff options
author | Michiel Van Der Kolk <not.valid@email.address> | 2005-07-03 21:08:16 +0000 |
---|---|---|
committer | Michiel Van Der Kolk <not.valid@email.address> | 2005-07-03 21:08:16 +0000 |
commit | 765cd6d5e74426df6a087cb8ff9ef8872ea7dadd (patch) | |
tree | 785587817df258a024933b01092da98aec5e6127 /firmware/export/id3.h | |
parent | 0a9dec60b58cd63aaa7048d0d348b93187f5aa51 (diff) |
(in theory) more efficient (battery wise) runtime database code.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6999 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/id3.h')
-rw-r--r-- | firmware/export/id3.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/firmware/export/id3.h b/firmware/export/id3.h index 99999817c2..a1fff903f0 100644 --- a/firmware/export/id3.h +++ b/firmware/export/id3.h @@ -94,6 +94,19 @@ struct mp3entry { /* resume related */ int offset; /* bytes played */ int index; /* playlist index */ + + /* FileEntry fields */ + long fileentryoffset; + long filehash; + long songentryoffset; + long rundbentryoffset; + + /* runtime database fields */ + long rundbhash; + short rating; + short voladjust; + long playcount; + long lastplayed; }; enum { |