2022-05-08 18:51:05 +02:00
|
|
|
#pragma once
|
|
|
|
#include "../PatchedFunctionData.h"
|
|
|
|
#include <coreinit/memheap.h>
|
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#define JUMP_HEAP_DATA_SIZE (32 * 1024)
|
|
|
|
extern char gJumpHeapData[];
|
|
|
|
extern MEMHeapHandle gJumpHeapHandle;
|
|
|
|
|
|
|
|
extern std::shared_ptr<FunctionAddressProvider> gFunctionAddressProvider;
|
|
|
|
extern std::mutex gPatchedFunctionsMutex;
|
|
|
|
extern std::vector<std::shared_ptr<PatchedFunctionData>> gPatchedFunctions;
|
|
|
|
|
2022-07-26 23:11:47 +02:00
|
|
|
extern void *(*gMEMAllocFromDefaultHeapExForThreads)(uint32_t size, int align);
|
|
|
|
extern void (*gMEMFreeToDefaultHeapForThreads)(void *ptr);
|