mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-06 23:02:42 +02:00
... freeing it to a low level and AboutDialog.cpp to a high level, by moving functions from the latter into the former
24 lines
500 B
C++
24 lines
500 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
HelpText.h
|
|
|
|
James Crook
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_HELP_TEXT__
|
|
#define __AUDACITY_HELP_TEXT__
|
|
|
|
class wxString;
|
|
|
|
wxString HelpText( const wxString & Key );
|
|
wxString TitleText( const wxString & Key );
|
|
|
|
extern const wxString VerCheckArgs();
|
|
extern const wxString VerCheckUrl();
|
|
extern const wxString VerCheckHtml();
|
|
|
|
#endif
|