Main Page   Data Structures   File List   Data Fields   Globals   Related Pages  

id3v1.h

Go to the documentation of this file.
00001 #ifndef ID3V1_H
00002 #define ID3V1_H
00003 
00004 typedef struct {
00005   char  title[30+1];
00006   char  artist[30+1];
00007   char  album[30+1];
00008   char  year[4+1];
00009   char  comment[30+1];
00010   char  track;
00011   char  genre;
00012 } ID3v1Tag;
00013 
00014 extern  const char* ID3v1_GetGenreString(int genre);
00015 extern  int         ID3v1_ReadTag(FILE *f, ID3v1Tag *tag);
00016 
00017 
00018 #endif

Generated on Sun Aug 4 21:47:28 2002 for k/os mp3v2 by doxygen1.2.16