| 348 | } |
| 349 | |
| 350 | std::vector<std::string> Host::GetStringListSetting(const char* section, const char* key) |
| 351 | { |
| 352 | std::unique_lock lock(s_settings_mutex); |
| 353 | return s_layered_settings_interface.GetStringList(section, key); |
| 354 | } |
| 355 | |
| 356 | SettingsInterface* Host::Internal::GetBaseSettingsLayer() |
| 357 | { |
nothing calls this directly
no test coverage detected