00001
00007 #ifndef INC_MP3_ID3_H
00008 #define INC_MP3_ID3_H
00009
00010
00011
00013 #define ID3_STRING_ERROR (NULL)
00014
00015 #define ID3_INT_ERROR ((unsigned)-1)
00016
00018 #define ID3_NB_GENRES 127
00019
00020 extern const char *id3_genres[ID3_NB_GENRES];
00021
00028 char *id3_get_string(struct id3_tag *tag, char const *frameid);
00035 unsigned long id3_get_int(struct id3_tag *tag, char const *frameid);
00036
00037 #endif