Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vstpshpack4.h 1.2KB

123456789101112131415161718192021222324252627282930
  1. //------------------------------------------------------------------------
  2. // Project : VST SDK
  3. //
  4. // Category : Interfaces
  5. // Filename : pluginterfaces/vst/vstpshpack4.h
  6. // Created by : Steinberg, 05/2010
  7. // Description : This file turns 4 Bytes packing of structures on. The file
  8. // pluginterfaces/base/falignpop.h is the complement to this file.
  9. //
  10. //-----------------------------------------------------------------------------
  11. // This file is part of a Steinberg SDK. It is subject to the license terms
  12. // in the LICENSE file found in the top-level directory of this distribution
  13. // and at www.steinberg.net/sdklicenses.
  14. // No part of the SDK, including this file, may be copied, modified, propagated,
  15. // or distributed except according to the terms contained in the LICENSE file.
  16. //-----------------------------------------------------------------------------
  17. #pragma once
  18. //----------------------------------------------------------------------------------------------
  19. #if defined __BORLANDC__
  20. #pragma -a4
  21. #else
  22. #if (_MSC_VER >= 800 && !defined(_M_I86)) || defined(_PUSHPOP_SUPPORTED)
  23. #pragma warning(disable:4103)
  24. #endif
  25. #pragma pack(push)
  26. #pragma pack(4)
  27. #endif