mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-12-25 20:41:48 +01:00
16 lines
325 B
C
16 lines
325 B
C
|
#pragma once
|
||
|
|
||
|
#include <span>
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
namespace WUPSBackendSettings {
|
||
|
bool LoadSettings();
|
||
|
|
||
|
bool SaveSettings();
|
||
|
|
||
|
void SetInactivePluginFilenames(std::span<std::string> filenames);
|
||
|
|
||
|
const std::vector<std::string> &GetInactivePluginFilenames();
|
||
|
}; // namespace WUPSBackendSettings
|