From 7fbbdb5c5cb7876ea6588324d60a06d96e68d135 Mon Sep 17 00:00:00 2001 From: Henric Jungheim Date: Tue, 11 Jun 2019 08:06:08 -0700 Subject: [PATCH] Add AUDACITY_DLL_API to class AudioIOBase. Derived classes use it, so the base class needs it to. This is needed to get mod-nyq-bench to link. --- src/AudioIOBase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AudioIOBase.h b/src/AudioIOBase.h index 281516867..b28da7984 100644 --- a/src/AudioIOBase.h +++ b/src/AudioIOBase.h @@ -106,7 +106,7 @@ struct AudioIOStartStreamOptions ///\brief A singleton object supporting queries of the state of any active /// audio streams, and audio device capabilities -class AudioIOBase /* not final */ +class AUDACITY_DLL_API AudioIOBase /* not final */ { public: static AudioIOBase *Get();