WiiUPluginLoaderBackend/source/globals.cpp

16 lines
909 B
C++
Raw Normal View History

2020-05-17 20:40:05 +02:00
#include "globals.h"
2022-02-04 16:25:44 +01: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")));
2022-02-04 16:25:44 +01:00
module_information_t *gModuleData __attribute__((section(".data"))) = nullptr;
2022-01-27 12:47:33 +01:00
relocation_trampoline_entry_t *gTrampolineData __attribute__((section(".data"))) = nullptr;
2020-05-17 20:40:05 +02:00
uint32_t gPluginDataHeapSize __attribute__((section(".data"))) = 0;
uint32_t gPluginInformationHeapSize __attribute__((section(".data"))) = 0;
uint32_t gTrampolineDataSize __attribute__((section(".data"))) = 0;
StoredBuffer storedTVBuffer __attribute__((section(".data"))) = {};
StoredBuffer storedDRCBuffer __attribute__((section(".data"))) = {};