gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

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 }