From b6bbcb3438276e507efde759ac3b92fb0067b768 Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Wed, 8 Aug 2018 09:52:43 +0100 Subject: [PATCH] VST: Added a missing file to the embedded VST SDK --- .../VST3_SDK/pluginterfaces/vst/vstpshpack4.h | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/vstpshpack4.h diff --git a/modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/vstpshpack4.h b/modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/vstpshpack4.h new file mode 100644 index 0000000000..8399868e83 --- /dev/null +++ b/modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/vstpshpack4.h @@ -0,0 +1,31 @@ +//------------------------------------------------------------------------ +// Project : VST SDK +// Version : 3.6.7 +// +// Category : Interfaces +// Filename : pluginterfaces/vst/vstpshpack4.h +// Created by : Steinberg, 05/2010 +// Description : This file turns 4 Bytes packing of structures on. The file +// pluginterfaces/base/falignpop.h is the complement to this file. +// +//----------------------------------------------------------------------------- +// This file is part of a Steinberg SDK. It is subject to the license terms +// in the LICENSE file found in the top-level directory of this distribution +// and at www.steinberg.net/sdklicenses. +// No part of the SDK, including this file, may be copied, modified, propagated, +// or distributed except according to the terms contained in the LICENSE file. +//----------------------------------------------------------------------------- + +#pragma once + +//---------------------------------------------------------------------------------------------- +#if defined __BORLANDC__ + #pragma -a4 +#else + #if (_MSC_VER >= 800 && !defined(_M_I86)) || defined(_PUSHPOP_SUPPORTED) + #pragma warning(disable:4103) + #endif + + #pragma pack(push) + #pragma pack(4) +#endif