mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-08 16:11:14 +02:00
... in many places where the function call will later need to be between modules (or libraries, or the executable) and the annotation will be a necessity to keep the linkage working on Windows. That's all that this sweeping commit does.
26 lines
513 B
C++
26 lines
513 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
Languages.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_LANGUAGES__
|
|
#define __AUDACITY_LANGUAGES__
|
|
|
|
class wxArrayString;
|
|
class wxString;
|
|
|
|
#include "audacity/Types.h"
|
|
|
|
AUDACITY_DLL_API
|
|
void GetLanguages(
|
|
wxArrayString &langCodes, TranslatableStrings &langNames);
|
|
|
|
wxString GetSystemLanguageCode();
|
|
|
|
#endif // __AUDACITY_LANGUAGES__
|