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.

23 lines
301B

  1. #pragma once
  2. #include <common.hpp>
  3. #include <math.hpp>
  4. namespace rack {
  5. /** Computer keyboard MIDI driver
  6. */
  7. namespace keyboard {
  8. void init();
  9. void press(int key);
  10. void release(int key);
  11. /** pos is in the unit box. */
  12. void mouseMove(math::Vec pos);
  13. } // namespace keyboard
  14. } // namespace rack