JUCE-7.0.12-0-g4f43011b96
JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation
Loading...
Searching...
No Matches
juce_audio_processors
format_types
VST3_SDK
pluginterfaces
base
falignpush.h
Go to the documentation of this file.
1
//-----------------------------------------------------------------------------
2
// Project : SDK Core
3
//
4
// Category : SDK Core Interfaces
5
// Filename : pluginterfaces/base/falignpush.h
6
// Created by : Steinberg, 01/2004
7
// Description : Set alignment settings
8
//
9
//-----------------------------------------------------------------------------
10
// This file is part of a Steinberg SDK. It is subject to the license terms
11
// in the LICENSE file found in the top-level directory of this distribution
12
// and at www.steinberg.net/sdklicenses.
13
// No part of the SDK, including this file, may be copied, modified, propagated,
14
// or distributed except according to the terms contained in the LICENSE file.
15
//-----------------------------------------------------------------------------
16
17
//----------------------------------------------------------------------------------------------
18
#if SMTG_OS_MACOS
19
#pragma GCC diagnostic ignored "-Wunknown-warning-option"
20
#pragma GCC diagnostic ignored "-Wpragma-pack"
21
#if SMTG_PLATFORM_64
22
#pragma pack(push, 16)
23
#else
24
#pragma pack(push, 1)
25
#endif
26
#elif defined __BORLANDC__
27
#pragma -a8
28
#elif SMTG_OS_WINDOWS
30
#ifdef _MSC_VER
31
#pragma warning(disable : 4103)
32
#endif
33
#pragma pack(push)
34
#if SMTG_PLATFORM_64
35
#pragma pack(16)
36
#else
37
#pragma pack(8)
38
#endif
39
#endif
40
//----------------------------------------------------------------------------------------------
« « « Anklang Documentation