mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-06 13:05:07 +01:00
15 lines
465 B
C++
15 lines
465 B
C++
#include "globals.h"
|
|
|
|
StoredBuffer gStoredTVBuffer = {};
|
|
StoredBuffer gStoredDRCBuffer = {};
|
|
|
|
std::vector<PluginContainer> gLoadedPlugins;
|
|
std::vector<relocation_trampoline_entry_t> gTrampData;
|
|
|
|
std::set<std::shared_ptr<PluginData>> gLoadedData;
|
|
std::set<std::shared_ptr<PluginData>> gLoadOnNextLaunch;
|
|
std::mutex gLoadedDataMutex;
|
|
std::map<std::string, OSDynLoad_Module> gUsedRPLs;
|
|
std::vector<void *> gAllocatedAddresses;
|
|
|
|
bool gNotificationModuleLoaded = false; |