mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-12-18 17:11:54 +01:00
5f23142b2d
* Add `WUPSConfigAPI_Menu_GetStatus()` function. --HG-- branch : menu-status-api-hg * Indentation fix. --HG-- branch : menu-status-api-hg --------- Co-authored-by: Daniel K. O. (dkosmari) <none@none>
23 lines
686 B
C++
23 lines
686 B
C++
#include "globals.h"
|
|
#include "plugin/PluginContainer.h"
|
|
#include "plugin/PluginData.h"
|
|
|
|
StoredBuffer gStoredTVBuffer = {};
|
|
StoredBuffer gStoredDRCBuffer = {};
|
|
|
|
std::vector<PluginContainer> gLoadedPlugins;
|
|
std::vector<relocation_trampoline_entry_t> gTrampData;
|
|
|
|
std::set<std::shared_ptr<PluginData>, PluginDataSharedPtrComparator> gLoadedData;
|
|
std::vector<std::shared_ptr<PluginData>> gLoadOnNextLaunch;
|
|
std::mutex gLoadedDataMutex;
|
|
std::map<std::string, OSDynLoad_Module> gUsedRPLs;
|
|
std::vector<void *> gAllocatedAddresses;
|
|
|
|
bool gNotificationModuleLoaded = false;
|
|
|
|
OSThread *gOnlyAcceptFromThread = nullptr;
|
|
|
|
bool gConfigMenuShouldClose = false;
|
|
bool gConfigMenuOpened = false;
|