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