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.

32 lines
1.2KB

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