aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/libapetag/id3v2_read.h
blob: 16d433d882cb2622854c0b43a8c851258ff841bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/********************************************************************
*    
* Copyright (c) 2002 Artur Polaczynski (Ar't)  All rights reserved.
*            <artii@o2.pl>        LGPL-2.1
*       $ArtId: id3v2_read.h,v 1.6 2003/04/04 20:06:40 art Exp $
********************************************************************/
/*
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as 
 * published by the Free Software Foundation; either version 2.1 
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */


#ifndef _ID3V2_READ_H
#define _ID3V2_READ_H

/** \file id3v2_read.h
    \brief reading id3v2 tag to ape_cnt 
*/

#ifdef ID3V2_READ
/**
    reading id3v2 tag to #mem_cnt 

    \param mem_cnt stucture ape_mem_cnt
    \param fileName file name (no file pointer becase libid3 using filename in c mode)
*/
int readtag_id3v2 ( apetag *mem_cnt, char* fileName );
#endif

#endif /* _ID3V2_READ_H */