mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
32 lines
No EOL
917 B
C++
32 lines
No EOL
917 B
C++
#pragma once
|
|
|
|
#include "nlohmann/json.hpp"
|
|
#include "dll_export.h"
|
|
#include <functional>
|
|
|
|
namespace satdump
|
|
{
|
|
namespace config
|
|
{
|
|
SATDUMP_DLL extern nlohmann::ordered_json master_cfg; // The main system-wise satdump_cfg.json
|
|
SATDUMP_DLL extern nlohmann::ordered_json main_cfg; // The actual config we should use, that includes user changes
|
|
|
|
void loadConfig(std::string path, std::string user_path);
|
|
void loadUserConfig(std::string user_path);
|
|
void saveUserConfig();
|
|
|
|
struct PluginConfigHandler
|
|
{
|
|
std::string name;
|
|
std::function<void()> render;
|
|
std::function<void()> save;
|
|
};
|
|
|
|
SATDUMP_DLL extern std::vector<PluginConfigHandler> plugin_config_handlers;
|
|
|
|
struct RegisterPluginConfigHandlersEvent
|
|
{
|
|
std::vector<PluginConfigHandler> &plugin_config_handlers;
|
|
};
|
|
}
|
|
} |