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.

26 lines
263B

  1. #pragma once
  2. #include <common.hpp>
  3. #include <midi.hpp>
  4. namespace rack {
  5. namespace midiloopback {
  6. struct Device;
  7. struct Context {
  8. Device* devices[1] = {};
  9. Context();
  10. ~Context();
  11. };
  12. PRIVATE void init();
  13. } // namespace midiloopback
  14. } // namespace rack