Audio plugin host https://kx.studio/carla
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
734B

  1. #pragma once
  2. #include <string>
  3. #include <rtosc/ports.h>
  4. extern const rtosc::Ports real_preset_ports;
  5. extern const rtosc::Ports preset_ports;
  6. struct Clipboard {
  7. std::string data;
  8. std::string type;
  9. };
  10. Clipboard clipboardCopy(class MiddleWare &mw, std::string url);
  11. void presetCopy(MiddleWare &mw, std::string url, std::string name);
  12. void presetPaste(MiddleWare &mw, std::string url, std::string name);
  13. void presetCopyArray(MiddleWare &mw, std::string url, int field, std::string name);
  14. void presetPasteArray(MiddleWare &mw, std::string url, int field, std::string name);
  15. void presetPaste(std::string url, int);
  16. void presetDelete(int);
  17. void presetRescan();
  18. std::string presetClipboardType();
  19. bool presetCheckClipboardType();