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.

bridge.hpp 268B

123456789101112131415
  1. #pragma once
  2. #include "bridgeprotocol.hpp"
  3. #include "audio.hpp"
  4. namespace rack {
  5. void bridgeInit();
  6. void bridgeDestroy();
  7. void bridgeAudioSubscribe(int channel, audio::Port *port);
  8. void bridgeAudioUnsubscribe(int channel, audio::Port *port);
  9. } // namespace rack