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.

19 lines
332B

  1. #pragma once
  2. #include "audio.hpp"
  3. namespace rack {
  4. static const int BRIDGE_CHANNELS = 16;
  5. void bridgeInit();
  6. void bridgeDestroy();
  7. void bridgeAudioSubscribe(int channel, AudioIO *audio);
  8. void bridgeAudioUnsubscribe(int channel, AudioIO *audio);
  9. bool bridgeAudioIsSubscribed(int channel, AudioIO *audio);
  10. } // namespace rack