mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-05 12:35:06 +01:00
19 lines
582 B
C
19 lines
582 B
C
#pragma once
|
|
|
|
#include <wums.h>
|
|
|
|
#include "plugin/PluginContainer.h"
|
|
#include "common/plugin_defines.h"
|
|
|
|
extern plugin_information_t *gPluginInformation;
|
|
extern MEMHeapHandle gPluginDataHeap;
|
|
extern MEMHeapHandle gPluginInformationHeap;
|
|
extern uint32_t gPluginDataHeapSize;
|
|
extern uint32_t gPluginInformationHeapSize;
|
|
extern plugin_information_on_reload_t gLinkOnReload;
|
|
extern module_information_t *gModuleData;
|
|
extern relocation_trampolin_entry_t *gTrampolineData;
|
|
extern uint32_t gTrampolineDataSize;
|
|
|
|
#define PLUGIN_DATA_HEAP_SIZE (8 * 1024 * 1024)
|
|
#define NUMBER_OF_TRAMPS 1024 |