Browse Source

Made VST plugins respond to the effIdentify message with the official 'NvEf' magic number

tags/2021-05-28
jules 8 years ago
parent
commit
70a830be4b
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp

+ 1
- 0
modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp View File

@@ -1146,6 +1146,7 @@ public:
case plugInOpcodeGetEditorBounds: return handleGetEditorBounds (args);
case plugInOpcodeOpenEditor: return handleOpenEditor (args);
case plugInOpcodeCloseEditor: return handleCloseEditor (args);
case plugInOpcodeIdentify: return (pointer_sized_int) ByteOrder::bigEndianInt ("NvEf");
case plugInOpcodeGetData: return handleGetData (args);
case plugInOpcodeSetData: return handleSetData (args);
case plugInOpcodePreAudioProcessingEvents: return handlePreAudioProcessingEvents (args);


Loading…
Cancel
Save