|
|
@@ -23,13 +23,6 @@ |
|
|
|
// ----------------------------------------------------------------------- |
|
|
|
// Include fixes |
|
|
|
|
|
|
|
// Define __cdecl if needed |
|
|
|
#ifndef CARLA_OS_WIN |
|
|
|
# ifndef __cdecl |
|
|
|
# define __cdecl |
|
|
|
# endif |
|
|
|
#endif |
|
|
|
|
|
|
|
// Disable deprecated VST features (NOT) |
|
|
|
#define VST_2_4_EXTENSIONS 1 |
|
|
|
#define VST_FORCE_DEPRECATED 0 |
|
|
@@ -105,7 +98,11 @@ |
|
|
|
#define kVstTransportChanged 1 |
|
|
|
#define kVstVersion 2400 |
|
|
|
#define DECLARE_VST_DEPRECATED(idx) idx |
|
|
|
#define VSTCALLBACK __cdecl |
|
|
|
#if defined(CARLA_OS_WIN) && defined(__cdecl) |
|
|
|
# define VSTCALLBACK __cdecl |
|
|
|
#else |
|
|
|
# define VSTCALLBACK |
|
|
|
#endif |
|
|
|
struct ERect { |
|
|
|
int16_t top, left, bottom, right; |
|
|
|
}; |
|
|
|