1 /* flac.h
2  * Copyright (C) 2005 Sylvain Cresto <scresto@gmail.com>
3  *
4  * This file is part of graveman!
5  *
6  * graveman! is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or
9  * (at your option) any later version.
10  *
11  * graveman! is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with program; see the file COPYING. If not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
19  * MA 02111-1307, USA.
20  *
21  * URL: http://www.nongnu.org/graveman/
22  *
23  */
24 #ifndef _G_FLAC_H
25 #define _G_FLAC_H
26 
27 extern gboolean getFlacInfo(gchar *Afilename, guint32 *Alength, GError **Aerror);
28 extern gboolean flac_callback(GIOChannel *Astd, GIOCondition Acond, gpointer Adata);
29 extern gboolean FlacToWav(Tgrave *Ag, gchar *AFichier, gchar *AVers, GError **Aerror);
30 
31 #endif
32 
33 /*
34  * vim:et:ts=8:sts=2:sw=2
35  */
36