Collection of tools useful for audio production
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.
|
-
- #ifdef CARLA_ENGINE_LV2
- class CarlaEngineLv2 : public CarlaEngine
- {
- public:
- CarlaEngineLv2();
- ~CarlaEngineLv2();
-
- // -------------------------------------
-
- bool init(const char* const name);
- bool close();
-
- bool isOnAudioThread();
- bool isOffline();
- bool isRunning();
-
- CarlaEngineClient* addClient(CarlaPlugin* const plugin);
- };
- #endif
|