| 38 | // NOTE: terminate all strings with '/' or '\\' |
| 39 | |
| 40 | std::string configDir(bool set, const char* str) { |
| 41 | static std::string customConfigDir = std::string(""); |
| 42 | if (set) { |
| 43 | customConfigDir = std::string(str); |
| 44 | } |
| 45 | return customConfigDir; |
| 46 | } |
| 47 | |
| 48 | |
| 49 | void setCustomConfigDir(const char* str) { |
no outgoing calls
no test coverage detected