| 274 | } |
| 275 | |
| 276 | bool Host::AddBaseValueToStringList(const char* section, const char* key, const char* value) |
| 277 | { |
| 278 | std::unique_lock lock(s_settings_mutex); |
| 279 | return s_layered_settings_interface.GetLayer(LayeredSettingsInterface::LAYER_BASE) |
| 280 | ->AddToStringList(section, key, value); |
| 281 | } |
| 282 | |
| 283 | bool Host::RemoveBaseValueFromStringList(const char* section, const char* key, const char* value) |
| 284 | { |
nothing calls this directly
no test coverage detected