The credits file now also has underscores, which need to be escaped in LaTeX.
[Rockbox.git] / rbutil / bootloaders.h
blobba751bd715f5c1aa02c2e03f32b8dd58309dab7e
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * Module: rbutil
9 * File: bootloaders.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 ****************************************************************************/
23 #ifndef BOOTLOADERS_H_INCLUDED
24 #define BOOTLOADERS_H_INCLUDED
26 #include <wx/string.h>
28 extern "C" {
29 // Ipodpatcher
30 #include "ipodpatcher/ipodpatcher.h"
31 // Sansapatcher
32 #include "sansapatcher/sansapatcher.h"
36 bool initIpodpatcher();
37 bool initSansaPatcher();
38 bool ipodpatcher(int mode,wxString bootloadername);
39 bool sansapatcher(int mode,wxString bootloadername);
40 bool gigabeatf(int mode,wxString bootloadername,wxString deviceDir);
41 bool iaudiox5(int mode,wxString bootloadername,wxString deviceDir);
42 bool fwpatcher(int mode,wxString bootloadername,wxString deviceDir,wxString firmware);
43 bool h10(int mode,wxString bootloadername,wxString deviceDir);
46 #endif // BOOTLOADERS_H_INCLUDED