move iriver checksums to its own file to remove unneeded inclusion and kill warnings...
[Rockbox.git] / rbutil / irivertools.h
blobd646cf1d6c3f66bda496eee864e9227d2187b606
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * Module: rbutil
9 * File: irivertools.h
11 * Copyright (C) 2007 Dominik Wenger
13 * All files in this archive are subject to the GNU General Public License.
14 * See the file COPYING in the source tree root for full license agreement.
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
19 ****************************************************************************/
22 #ifndef IRIVERTOOLS_H_INCLUDED
23 #define IRIVERTOOLS_H_INCLUDED
25 #include "rbutil.h"
26 #include "installlog.h"
27 #include "md5sum.h"
29 #define ESTF_SIZE 32
31 struct sumpairs {
32 char *unpatched;
33 char *patched;
36 /* precalculated checksums for H110/H115 */
37 static struct sumpairs h100pairs[] = {
38 #include "h100sums.h"
41 /* precalculated checksums for H120/H140 */
42 static struct sumpairs h120pairs[] = {
43 #include "h120sums.h"
46 /* precalculated checksums for H320/H340 */
47 static struct sumpairs h300pairs[] = {
48 #include "h300sums.h"
52 enum striptype
54 STRIP_NONE,
55 STRIP_HEADER_CHECKSUM,
56 STRIP_HEADER_CHECKSUM_ESTF
59 /* protos for iriver.c */
61 int intable(char *md5, struct sumpairs *table, int len);
63 bool PatchFirmware(wxString firmware,wxString bootloader,int series, int table_entry);
66 #endif // IRIVERTOOLS_H_INCLUDED