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.

31 lines
680B

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