| 268 | } |
| 269 | |
| 270 | void Host::SetBaseStringListSettingValue(const char* section, const char* key, const std::vector<std::string>& values) |
| 271 | { |
| 272 | std::unique_lock lock(s_settings_mutex); |
| 273 | s_layered_settings_interface.GetLayer(LayeredSettingsInterface::LAYER_BASE)->SetStringList(section, key, values); |
| 274 | } |
| 275 | |
| 276 | bool Host::AddBaseValueToStringList(const char* section, const char* key, const char* value) |
| 277 | { |
nothing calls this directly
no test coverage detected