blob: b1246201d3ebdc8ebbce4c57666f73d9d02bb07d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* Module: rbutil
* File: credits.h
*
* Copyright (C) 2006 Christi Alice Scarborough
*
* All files in this archive are subject to the GNU General Public License.
* See the file COPYING in the source tree root for full license agreement.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
****************************************************************************/
#ifndef CREDITS_H_INCLUDED
#define CREDITS_H_INCLUDED
#define RBUTIL_FULLNAME "The Rockbox Utility"
#define RBUTIL_VERSION "Version 0.3.2.6"
static const wxString rbutil_developers[] = {
wxT("Christi Alice Scarborough"),
wxT("Dave Chapman"),
wxT("Dominik Wenger"),
wxT("Bryan Childs"),
wxT("Dave Hooper"),
wxT("")
};
#define RBUTIL_WEBSITE "http://www.rockbox.org/"
#define RBUTIL_COPYRIGHT wxT("© 2005-2007 The Rockbox Team\n" \
"Released under the GNU General Public License v2.")
#define RBUTIL_DESCRIPTION wxT("Installer and housekeeping utility for " \
"the Rockbox open source digital audio player firmware.")
class AboutDlg: public wxDialog
{
public:
AboutDlg(rbutilFrm *parent);
~AboutDlg();
};
#include <wx/hyperlink.h>
#endif // CREDITS_H_INCLUDED
|