mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-05 20:45:07 +01:00
16 lines
689 B
C++
16 lines
689 B
C++
#include "globals.h"
|
|
|
|
MEMHeapHandle gPluginDataHeap __attribute__((section(".data"))) = nullptr;
|
|
MEMHeapHandle gPluginInformationHeap __attribute__((section(".data"))) = nullptr;
|
|
plugin_information_t *gPluginInformation __attribute__((section(".data"))) = nullptr;
|
|
plugin_information_on_reload_t gLinkOnReload __attribute__((section(".data")));
|
|
module_information_t *gModuleData __attribute__((section(".data"))) = nullptr;
|
|
relocation_trampolin_entry_t *gTrampolineData __attribute__((section(".data"))) = nullptr;
|
|
|
|
uint32_t gPluginDataHeapSize = 0;
|
|
uint32_t gPluginInformationHeapSize = 0;
|
|
uint32_t gTrampolineDataSize = 0;
|
|
|
|
StoredBuffer storedTVBuffer{};
|
|
StoredBuffer storedDRCBuffer{};
|