2020-05-17 20:40:05 +02:00
|
|
|
#include "globals.h"
|
|
|
|
|
2021-04-01 00:37:22 +02:00
|
|
|
MEMHeapHandle gPluginDataHeap __attribute__((section(".data"))) = nullptr;
|
|
|
|
MEMHeapHandle gPluginInformationHeap __attribute__((section(".data"))) = nullptr;
|
2020-12-26 14:17:50 +01:00
|
|
|
plugin_information_t *gPluginInformation __attribute__((section(".data"))) = nullptr;
|
|
|
|
plugin_information_on_reload_t gLinkOnReload __attribute__((section(".data")));
|
2021-01-10 13:17:47 +01:00
|
|
|
module_information_t *gModuleData __attribute__((section(".data"))) = nullptr;
|
2021-04-01 00:37:22 +02:00
|
|
|
relocation_trampolin_entry_t *gTrampolineData __attribute__((section(".data"))) = nullptr;
|
2020-05-17 20:40:05 +02:00
|
|
|
|
2021-04-01 00:37:22 +02:00
|
|
|
uint32_t gPluginDataHeapSize = 0;
|
|
|
|
uint32_t gPluginInformationHeapSize = 0;
|
2021-04-07 00:23:23 +02:00
|
|
|
uint32_t gTrampolineDataSize = 0;
|
|
|
|
|
|
|
|
StoredBuffer storedTVBuffer{};
|
|
|
|
StoredBuffer storedDRCBuffer{};
|