WiiUPluginLoaderBackend/source/globals.cpp

15 lines
482 B
C++
Raw Normal View History

2020-05-17 20:40:05 +02:00
#include "globals.h"
StoredBuffer gStoredTVBuffer = {};
StoredBuffer gStoredDRCBuffer = {};
2020-05-17 20:40:05 +02:00
std::vector<std::unique_ptr<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;
2023-08-16 10:08:44 +02:00
bool gNotificationModuleLoaded = false;