From ba15707b292d827bdce732e7713b26fae3f75c74 Mon Sep 17 00:00:00 2001 From: Alex Bennee Date: Wed, 14 Jul 2010 15:57:06 +0100 Subject: EasyTag 2.1.1 --- src/libapetag/id3v2_read.h | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100755 src/libapetag/id3v2_read.h (limited to 'src/libapetag/id3v2_read.h') diff --git a/src/libapetag/id3v2_read.h b/src/libapetag/id3v2_read.h new file mode 100755 index 0000000..16d433d --- /dev/null +++ b/src/libapetag/id3v2_read.h @@ -0,0 +1,42 @@ +/******************************************************************** +* +* Copyright (c) 2002 Artur Polaczynski (Ar't) All rights reserved. +* 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 */ + -- cgit v1.2.3