mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-28 14:18:41 +02:00
25 lines
536 B
C++
25 lines
536 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
HelpText.h
|
|
|
|
James Crook
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_HELP_TEXT__
|
|
#define __AUDACITY_HELP_TEXT__
|
|
|
|
class TranslatableString;
|
|
class wxString;
|
|
|
|
wxString HelpText( const wxString & Key );
|
|
TranslatableString TitleText( const wxString & Key );
|
|
|
|
extern const wxString VerCheckArgs();
|
|
extern const wxString VerCheckUrl();
|
|
extern const wxString VerCheckHtml();
|
|
|
|
#endif
|