mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 05:05:20 -05:00
Cross-platform fix: Will now search the current directory for rbutil.ini in preference to the system application resource path. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11753 a1c6a512-1295-4272-9138-f99709370657
52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
/***************************************************************************
|
|
* __________ __ ___.
|
|
* 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.2.1.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
|