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.

27 lines
640B

  1. #pragma once
  2. #include "common.hpp"
  3. namespace rack {
  4. struct Plugin;
  5. namespace asset {
  6. void init(bool devMode);
  7. /** Returns the path of a system resource. Should only read files from this location. */
  8. std::string system(std::string filename);
  9. /** Returns the path of a user resource. Can read and write files to this location. */
  10. std::string user(std::string filename);
  11. /** Returns the path of a resource in the plugin's folder. Should only read files from this location. */
  12. std::string plugin(Plugin *plugin, std::string filename);
  13. extern std::string systemDir;
  14. extern std::string userDir;
  15. } // namespace asset
  16. } // namespace rack