summaryrefslogtreecommitdiff
path: root/rbutil/credits.h
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/credits.h')
-rw-r--r--rbutil/credits.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/rbutil/credits.h b/rbutil/credits.h
deleted file mode 100644
index b1246201d3..0000000000
--- a/rbutil/credits.h
+++ /dev/null
@@ -1,52 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * Module: rbutil
9 * File: credits.h
10 *
11 * Copyright (C) 2006 Christi Alice Scarborough
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 CREDITS_H_INCLUDED
22#define CREDITS_H_INCLUDED
23
24#define RBUTIL_FULLNAME "The Rockbox Utility"
25#define RBUTIL_VERSION "Version 0.3.2.6"
26
27static const wxString rbutil_developers[] = {
28 wxT("Christi Alice Scarborough"),
29 wxT("Dave Chapman"),
30 wxT("Dominik Wenger"),
31 wxT("Bryan Childs"),
32 wxT("Dave Hooper"),
33 wxT("")
34};
35
36#define RBUTIL_WEBSITE "http://www.rockbox.org/"
37#define RBUTIL_COPYRIGHT wxT("© 2005-2007 The Rockbox Team\n" \
38 "Released under the GNU General Public License v2.")
39#define RBUTIL_DESCRIPTION wxT("Installer and housekeeping utility for " \
40 "the Rockbox open source digital audio player firmware.")
41
42
43class AboutDlg: public wxDialog
44{
45 public:
46 AboutDlg(rbutilFrm *parent);
47 ~AboutDlg();
48};
49
50#include <wx/hyperlink.h>
51
52#endif // CREDITS_H_INCLUDED