summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/irivertools/checksums.h
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt/irivertools/checksums.h')
-rw-r--r--rbutil/rbutilqt/irivertools/checksums.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/irivertools/checksums.h b/rbutil/rbutilqt/irivertools/checksums.h
new file mode 100644
index 0000000000..aab58f6bca
--- /dev/null
+++ b/rbutil/rbutilqt/irivertools/checksums.h
@@ -0,0 +1,39 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * Module: rbutil
9 * File: irivertools.h
10 *
11 * Copyright (C) 2007 Dominik Wenger
12 *
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.
15 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
18 *
19 ****************************************************************************/
20
21#ifndef CHECKSUMS_H
22#define CHECKSUMS_H
23
24/* precalculated checksums for H110/H115 */
25static struct sumpairs h100pairs[] = {
26#include "h100sums.h"
27};
28
29/* precalculated checksums for H120/H140 */
30static struct sumpairs h120pairs[] = {
31#include "h120sums.h"
32};
33
34/* precalculated checksums for H320/H340 */
35static struct sumpairs h300pairs[] = {
36#include "h300sums.h"
37};
38
39#endif