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.

21 lines
371B

  1. #ifdef CARLA_ENGINE_LV2
  2. class CarlaEngineLv2 : public CarlaEngine
  3. {
  4. public:
  5. CarlaEngineLv2();
  6. ~CarlaEngineLv2();
  7. // -------------------------------------
  8. bool init(const char* const name);
  9. bool close();
  10. bool isOnAudioThread();
  11. bool isOffline();
  12. bool isRunning();
  13. CarlaEngineClient* addClient(CarlaPlugin* const plugin);
  14. };
  15. #endif