1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-25 02:04:23 +00:00

Reintroduced some packing settings for RTAS builds.

This commit is contained in:
jules 2012-05-04 11:00:05 +01:00
parent 7abee24947
commit 54573ae2e5
3 changed files with 13 additions and 0 deletions

View file

@ -43,7 +43,9 @@
#include <intrin.h>
#include <windows.h>
#pragma pack (push, 8)
#include "../utility/juce_IncludeModuleHeaders.h"
#pragma pack (pop)
//==============================================================================
void JUCE_CALLTYPE attachSubWindow (void* hostWindow,

View file

@ -90,12 +90,15 @@
//==============================================================================
#ifdef _MSC_VER
#pragma pack (push, 8)
#pragma warning (disable: 4263 4264)
#endif
#include "../utility/juce_IncludeModuleHeaders.h"
#ifdef _MSC_VER
#pragma pack (pop)
#if JUCE_DEBUGxxx // (the debug lib in the 8.0 SDK fails to link, so we'll stick to the release one...)
#define PT_LIB_PATH JucePlugin_WinBag_path "\\Debug\\lib\\"
#else

View file

@ -77,10 +77,18 @@
#endif
//==============================================================================
#ifdef _MSC_VER
#pragma pack (push, 8)
#endif
#include "../utility/juce_IncludeModuleHeaders.h"
#include "../utility/juce_FakeMouseMoveGenerator.h"
#include "../utility/juce_PluginHostType.h"
#ifdef _MSC_VER
#pragma pack (pop)
#endif
#undef MemoryBlock
class JuceVSTWrapper;