1
0
Fork 0
forked from len0rd/rockbox

Initial revision

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11721 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Christi Scarborough 2006-12-11 21:25:37 +00:00
parent b9258cf159
commit 0957acdb80
24 changed files with 4831 additions and 0 deletions

32
rbutil/credits.h Normal file
View file

@ -0,0 +1,32 @@
#ifndef CREDITS_H_INCLUDED
#define CREDITS_H_INCLUDED
#define RBUTIL_FULLNAME "The Rockbox Utility"
#define RBUTIL_VERSION "Version 0.2.0.0"
static char* rbutil_developers[] = {
"Christi Alice Scarborough",
""
};
//static char* rbutil_translators[] = (
// ""
//);
#define RBUTIL_WEBSITE "http://www.rockbox.org/"
#define RBUTIL_COPYRIGHT "(C) 2005-6 The Rockbox Team - " \
"released under the GNU Public License v2"
#define RBUTIL_DESCRIPTION "Utility for performing housekeepng tasks for" \
"the Rockbox audio jukebox firmware."
class AboutDlg: public wxDialog
{
public:
AboutDlg(rbutilFrm *parent);
~AboutDlg();
};
#include <wx/hyperlink.h>
#endif // CREDITS_H_INCLUDED