Make encoder name conversion functions static to the base class.
[Rockbox.git] / tools / voicefont.h
blob63374e36d3ea222503c95179d78efb6b69ad9bba
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id: voicefont.h 15675 2007-11-18 22:01:31Z amiconn $
10 * Copyright (C) 2004 by Jörg Hohensohn
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 * A tool to generate the Rockbox "voicefont", a collection of all the UI
19 * strings.
21 * Details at http://www.rockbox.org/twiki/bin/view/Main/VoiceBuilding
23 ****************************************************************************/
25 #ifndef VOICEFONT_H
26 #define VOICEFONT_H
28 #include <stdio.h>
29 #include <stdlib.h>
31 int voicefont(FILE* voicefontids,int targetnum,char* filedir, FILE* output);
33 #endif