|
LMMS
|
#include "CarlaHost.h"#include <dlfcn.h>#include <signal.h>#include <stdbool.h>#include <stdio.h>#include <unistd.h>Typedefs | |
| typedef bool(* | carla_engine_init_func) (const char *driverName, const char *clientName) |
| typedef void(* | carla_engine_idle_func) (void) |
| typedef bool(* | carla_is_engine_running_func) (void) |
| typedef bool(* | carla_engine_close_func) (void) |
| typedef bool(* | carla_add_plugin_func) (BinaryType btype, PluginType ptype, const char *filename, const char *name, const char *label, int64_t uniqueId, const void *extraPtr, uint options) |
| typedef const char *(* | carla_get_last_error_func) (void) |
Functions | |
| static void | signalHandler (int sig) |
| int | main (void) |
Variables | |
| static volatile bool | term = false |
| typedef bool(* carla_add_plugin_func) (BinaryType btype, PluginType ptype, const char *filename, const char *name, const char *label, int64_t uniqueId, const void *extraPtr, uint options) |
| typedef bool(* carla_engine_close_func) (void) |
| typedef bool(* carla_is_engine_running_func) (void) |
|
static |