diff --git a/build/win32/vc6/JUCE.dsp b/build/win32/vc6/JUCE.dsp index 23610b8cf2..815fd05808 100644 --- a/build/win32/vc6/JUCE.dsp +++ b/build/win32/vc6/JUCE.dsp @@ -167,11 +167,15 @@ SOURCE=..\..\..\src\juce_appframework\application\juce_SystemClipboard.h # PROP Default_Filter "" # Begin Source File -SOURCE=..\..\..\src\juce_appframework\audio\audio_file_formats\flac\libFLAC\bitbuffer.c +SOURCE=..\..\..\src\juce_appframework\audio\audio_file_formats\flac\libFLAC\bitmath.c # End Source File # Begin Source File -SOURCE=..\..\..\src\juce_appframework\audio\audio_file_formats\flac\libFLAC\bitmath.c +SOURCE=..\..\..\src\juce_appframework\audio\audio_file_formats\flac\libFLAC\bitreader.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\audio_file_formats\flac\libFLAC\bitwriter.c # End Source File # Begin Source File @@ -655,6 +659,94 @@ SOURCE=..\..\..\src\juce_appframework\audio\processors\juce_GenericAudioProcesso SOURCE=..\..\..\src\juce_appframework\audio\processors\juce_GenericAudioProcessorEditor.h # End Source File # End Group +# Begin Group "plugins" + +# PROP Default_Filter "" +# Begin Group "formats" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\formats\juce_AudioUnitPluginFormat.cpp +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\formats\juce_AudioUnitPluginFormat.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\formats\juce_DirectXPluginFormat.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\formats\juce_LADSPAPluginFormat.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\formats\juce_VSTPluginFormat.cpp +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\formats\juce_VSTPluginFormat.h +# End Source File +# End Group +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_AudioPluginFormat.cpp +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_AudioPluginFormat.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_AudioPluginFormatManager.cpp +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_AudioPluginFormatManager.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_AudioPluginInstance.cpp +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_AudioPluginInstance.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_KnownPluginList.cpp +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_KnownPluginList.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_PluginDescription.cpp +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_PluginDescription.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_PluginDirectoryScanner.cpp +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_PluginDirectoryScanner.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_PluginListComponent.cpp +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_PluginListComponent.h +# End Source File +# End Group # End Group # Begin Group "events" diff --git a/src/juce_appframework/audio/plugins/formats/juce_LADSPAPluginFormat.h b/src/juce_appframework/audio/plugins/formats/juce_LADSPAPluginFormat.h index def44f2758..193b51c3a8 100644 --- a/src/juce_appframework/audio/plugins/formats/juce_LADSPAPluginFormat.h +++ b/src/juce_appframework/audio/plugins/formats/juce_LADSPAPluginFormat.h @@ -1,4 +1,4 @@ -/* + /* ============================================================================== This file is part of the JUCE library - "Jules' Utility Class Extensions" diff --git a/src/juce_appframework/audio/plugins/formats/juce_VSTPluginFormat.cpp b/src/juce_appframework/audio/plugins/formats/juce_VSTPluginFormat.cpp index 231cfed25d..ef4e4a55a8 100644 --- a/src/juce_appframework/audio/plugins/formats/juce_VSTPluginFormat.cpp +++ b/src/juce_appframework/audio/plugins/formats/juce_VSTPluginFormat.cpp @@ -78,8 +78,11 @@ BEGIN_JUCE_NAMESPACE #pragma warning (disable: 4996) #endif -/* Obviously you're going to need the Steinberg vstsdk2.4 folder in - your include path if you want to add VST support... +/* Obviously you're going to need the Steinberg vstsdk2.4 folder in + your include path if you want to add VST support. + + If you're not interested in VSTs, you can disable them by changing the + JUCE_PLUGINHOST_VST flag in juce_Config.h */ #include "pluginterfaces/vst2.x/aeffectx.h"