2020-05-17 20:40:05 +02:00
|
|
|
#include "globals.h"
|
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
StoredBuffer gStoredTVBuffer __attribute__((section(".data"))) = {};
|
|
|
|
StoredBuffer gStoredDRCBuffer __attribute__((section(".data"))) = {};
|
2020-05-17 20:40:05 +02:00
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
std::vector<std::unique_ptr<PluginContainer>> gLoadedPlugins __attribute__((section(".data")));
|
|
|
|
relocation_trampoline_entry_t *gTrampData __attribute__((section(".data"))) = nullptr;
|
2021-04-07 00:23:23 +02:00
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
std::forward_list<std::shared_ptr<PluginData>> gLoadedData __attribute__((section(".data")));
|
|
|
|
std::forward_list<std::shared_ptr<PluginData>> gLoadOnNextLaunch __attribute__((section(".data")));
|
|
|
|
std::mutex gLoadedDataMutex __attribute__((section(".data")));
|
2022-10-05 20:08:49 +02:00
|
|
|
std::map<std::string, OSDynLoad_Module> gUsedRPLs __attribute__((section(".data")));
|
|
|
|
std::vector<void *> gAllocatedAddresses __attribute__((section(".data")));
|