connect progress signal directly to the logger.
[Rockbox.git] / tools / voicefont.h
blob1f9c7fc326b5d3f358aa275994b1a75ba5986064
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
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 #ifdef __cplusplus
32 extern "C" {
33 #endif
35 int voicefont(FILE* voicefontids,int targetnum,char* filedir, FILE* output);
37 #ifdef __cplusplus
39 #endif
40 #endif