id3.h
上传用户:xmgzy123
上传日期:2007-01-07
资源大小:373k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

WINDOWS

  1. /*
  2.  * id3.h - Copyright (C) 1999,2000 Jay A. Key
  3.  *
  4.  * ID3 tagging support routines
  5.  *
  6.  **********************************************************************
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21.  *
  22.  */
  23. #ifndef _ID3_H_INC
  24. #define _ID3_H_INC
  25. #include <stdio.h>
  26. typedef struct {
  27.   char szAlbum[31];
  28.   char szTitle[31];
  29.   char szArtist[31];
  30.   char szYear[5];
  31.   unsigned char genre;
  32.   unsigned char level;         // 0 == not used, 1 = ID3V1, 2 = ID3V2
  33. } ID3INFO, FAR *LPID3INFO;
  34. #define  ID3_ERASE     -2     // resets ID3INFO structure
  35. #define  ID3_ID3INFO   -1     // provide complete filled-in ID3INFO as (char *)
  36. #define  ID3_ARTIST     0
  37. #define  ID3_ALBUM      1
  38. #define  ID3_TITLE      2
  39. #define  ID3_YEAR       3
  40. #define  ID3_GENRE      4
  41. #define  ID3_LEVEL      5
  42. void asSetID3Info( int what, char *s, int val );
  43. void writeID3V2Tag( FILE *fp );
  44. void writeID3V1Tag( FILE *fp );
  45. void id3CDDBCat2Genre( char *s );
  46. #endif