Zrythm v2.0.0-DEV
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
carla_wrapper.h
1// SPDX-FileCopyrightText: © 2024 Alexandros Theodotou <alex@zrythm.org>
2// SPDX-License-Identifier: LicenseRef-ZrythmLicense
3
4#ifndef __CARLA_WRAPPER_H__
5#define __CARLA_WRAPPER_H__
6
7#include "zrythm-config.h"
8
9#if HAVE_CARLA
10
11# include <CarlaBackend.h>
12# include <CarlaHost.h>
13# include <CarlaNative.h>
14# include <CarlaNativePlugin.h>
15# include <CarlaUtils.h>
16
17/* Carla defines unlikely, which clashes with C++20 [[unlikely]] */
18# undef unlikely
19
20#endif // HAVE_CARLA
21
22#endif // __CARLA_WRAPPER_H__