| 232 | } |
| 233 | |
| 234 | std::vector<std::string> Host::GetBaseStringListSetting(const char* section, const char* key) |
| 235 | { |
| 236 | std::unique_lock lock(s_settings_mutex); |
| 237 | return s_layered_settings_interface.GetLayer(LayeredSettingsInterface::LAYER_BASE)->GetStringList(section, key); |
| 238 | } |
| 239 | |
| 240 | void Host::SetBaseBoolSettingValue(const char* section, const char* key, bool value) |
| 241 | { |
nothing calls this directly
no test coverage detected