2020-05-17 20:40:05 +02:00
|
|
|
#include "globals.h"
|
|
|
|
|
2024-03-23 21:12:27 +01:00
|
|
|
StoredBuffer gStoredTVBuffer = {};
|
|
|
|
StoredBuffer gStoredDRCBuffer = {};
|
2020-05-17 20:40:05 +02:00
|
|
|
|
2024-03-24 07:40:58 +01:00
|
|
|
std::vector<PluginContainer> gLoadedPlugins;
|
2024-03-23 21:12:27 +01:00
|
|
|
std::vector<relocation_trampoline_entry_t> gTrampData;
|
2021-04-07 00:23:23 +02:00
|
|
|
|
2024-03-23 21:12:27 +01:00
|
|
|
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
|
|
|
|
2024-05-03 13:00:18 +02:00
|
|
|
bool gNotificationModuleLoaded = false;
|
|
|
|
|
2024-05-03 15:08:24 +02:00
|
|
|
OSThread *gOnlyAcceptFromThread = nullptr;
|
|
|
|
|
|
|
|
bool gConfigMenuShouldClose = false;
|