os.h (397B)
1 #pragma once 2 3 #include <string> 4 5 namespace synthLib 6 { 7 std::string getModulePath(bool _stripPluginComponentFolders = true); 8 9 std::string findFile(const std::string& _extension, size_t _minSize, size_t _maxSize); 10 11 std::string findROM(size_t _minSize, size_t _maxSize); 12 std::string findROM(size_t _expectedSize = 524288); 13 14 void setFlushDenormalsToZero(); 15 16 bool isRunningUnderRosetta(); 17 }