Browse Source

Added missing JUCE_API keywords

tags/2021-05-28
hogliux 9 years ago
parent
commit
c67c1d4ef9
3 changed files with 5 additions and 5 deletions
  1. +2
    -2
      modules/juce_audio_utils/gui/juce_AudioAppComponent.h
  2. +2
    -2
      modules/juce_audio_utils/gui/juce_AudioVisualiserComponent.h
  3. +1
    -1
      modules/juce_audio_utils/gui/juce_BluetoothMidiDevicePairingDialogue.h

+ 2
- 2
modules/juce_audio_utils/gui/juce_AudioAppComponent.h View File

@@ -34,8 +34,8 @@
getNextAudioBlock(). The base class provides a basic AudioDeviceManager object getNextAudioBlock(). The base class provides a basic AudioDeviceManager object
and runs audio through the default output device. and runs audio through the default output device.
*/ */
class AudioAppComponent : public Component,
public AudioSource
class JUCE_API AudioAppComponent : public Component,
public AudioSource
{ {
public: public:
AudioAppComponent(); AudioAppComponent();


+ 2
- 2
modules/juce_audio_utils/gui/juce_AudioVisualiserComponent.h View File

@@ -40,8 +40,8 @@
real-world app that requires more powerful waveform display, you'll probably want to real-world app that requires more powerful waveform display, you'll probably want to
create your own component instead. create your own component instead.
*/ */
class AudioVisualiserComponent : public Component,
private Timer
class JUCE_API AudioVisualiserComponent : public Component,
private Timer
{ {
public: public:
/** Creates a visualiser with the given number of channels. */ /** Creates a visualiser with the given number of channels. */


+ 1
- 1
modules/juce_audio_utils/gui/juce_BluetoothMidiDevicePairingDialogue.h View File

@@ -42,7 +42,7 @@
supported. supported.
*/ */
class BluetoothMidiDevicePairingDialogue
class JUCE_API BluetoothMidiDevicePairingDialogue
{ {
public: public:


Loading…
Cancel
Save