1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-18 09:00:07 +02:00

More AUDACITY_DLL_API linkage specifications

This commit is contained in:
Paul Licameli 2021-05-20 16:42:10 -04:00
parent 945d3d1a8f
commit 48cacdd961
2 changed files with 4 additions and 3 deletions

View File

@ -70,6 +70,7 @@ class AUDACITY_DLL_API GUIPrefs final : public PrefsPanel
AUDACITY_DLL_API
int ShowClippingPrefsID();
AUDACITY_DLL_API
int ShowTrackNameInWaveformPrefsID();
extern AUDACITY_DLL_API ChoiceSetting

View File

@ -16,9 +16,9 @@
class IntSetting;
namespace QualitySettings {
extern IntSetting DefaultSampleRate;
extern EnumSetting< sampleFormat > SampleFormatSetting;
extern sampleFormat SampleFormatChoice();
extern AUDACITY_DLL_API IntSetting DefaultSampleRate;
extern AUDACITY_DLL_API EnumSetting< sampleFormat > SampleFormatSetting;
extern AUDACITY_DLL_API sampleFormat SampleFormatChoice();
}
#endif