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.

18 lines
313B

  1. #pragma once
  2. #include "scene.hpp"
  3. namespace rack {
  4. void guiInit();
  5. void guiDestroy();
  6. void guiRun();
  7. void guiCursorLock();
  8. void guiCursorUnlock();
  9. const char *guiSaveDialog(const char *filters, const char *filename);
  10. const char *guiOpenDialog(const char *filters, const char *filename);
  11. } // namespace rack