mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-06 14:52:34 +02:00
// Indentation settings for Vim and Emacs etc. lines from all files, as Campbell's patch (except for other changes to Languages.cpp)
23 lines
487 B
C
23 lines
487 B
C
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
Languages.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_LANGUAGES__
|
|
#define __AUDACITY_LANGUAGES__
|
|
|
|
#include <wx/arrstr.h>
|
|
#include <wx/string.h>
|
|
#include <wx/list.h>
|
|
|
|
void GetLanguages(wxArrayString &langCodes, wxArrayString &langNames);
|
|
|
|
wxString GetSystemLanguageCode();
|
|
|
|
#endif // __AUDACITY_LANGUAGES__
|