feat: add rack mode, colon commands, and client command parser

This commit is contained in:
Loic Coenen
2026-05-16 23:15:07 +00:00
committed by Loic Coenen (aider)
parent c7df02d37c
commit 9fda1b2669
10 changed files with 560 additions and 43 deletions

View File

@@ -2,6 +2,7 @@
#define CARLA_HOST_H
#include <stdbool.h>
#include <CarlaHost.h> /* CarlaHostHandle typedef */
/* All functions return -1 on error, 0 on success (except carla_load which returns 0 on success and sets *out_id) */
@@ -14,4 +15,8 @@ int carla_connect(int id, const char *port_name, const char *looper_port);
int carla_disconnect(const char *from, const char *to);
void carla_set_bypass(int id, bool bypass);
/* Get internal Carla host handle, may be NULL */
int carla_disconnect_plugin(int id);
CarlaHostHandle carla_get_handle(void);
#endif