1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-05 16:20:10 +01:00
Files
audacity/src/LangChoice.h
2021-08-24 16:57:24 -04:00

24 lines
535 B
C++

/**********************************************************************
Tenacity
LangChoice.h
Dominic Mazzoni
Pop up a language asking the user to choose a (natural)
language for the user interface. Generally only popped
up once, the first time the program is run.
**********************************************************************/
#ifndef __AUDACITY_LANG_CHOICE__
#define __AUDACITY_LANG_CHOICE__
class wxString;
class wxWindow;
wxString ChooseLanguage(wxWindow *parent);
#endif // __AUDACITY_LANG_CHOICE__