summaryrefslogtreecommitdiff
path: root/tools/voicefont.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/voicefont.h')
-rw-r--r--tools/voicefont.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/tools/voicefont.h b/tools/voicefont.h
new file mode 100644
index 0000000000..63374e36d3
--- /dev/null
+++ b/tools/voicefont.h
@@ -0,0 +1,33 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id: voicefont.h 15675 2007-11-18 22:01:31Z amiconn $
9 *
10 * Copyright (C) 2004 by Jörg Hohensohn
11 *
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.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 * A tool to generate the Rockbox "voicefont", a collection of all the UI
19 * strings.
20 *
21 * Details at http://www.rockbox.org/twiki/bin/view/Main/VoiceBuilding
22 *
23 ****************************************************************************/
24
25#ifndef VOICEFONT_H
26#define VOICEFONT_H
27
28#include <stdio.h>
29#include <stdlib.h>
30
31int voicefont(FILE* voicefontids,int targetnum,char* filedir, FILE* output);
32
33#endif