mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-09 14:35:07 +01:00
11 lines
315 B
C
11 lines
315 B
C
|
#pragma once
|
||
|
|
||
|
#include "common/plugin_defines.h"
|
||
|
#include "PluginContainer.h"
|
||
|
|
||
|
class PluginContainerPersistence {
|
||
|
public:
|
||
|
static bool savePlugin(plugin_information_t * pluginInformation, PluginContainer& plugin);
|
||
|
static std::vector<PluginContainer> loadPlugins(plugin_information_t * pluginInformation);
|
||
|
};
|