mirror of
				https://github.com/wiiu-env/FunctionPatcherModule.git
				synced 2025-10-30 19:15:57 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			676 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			676 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| #include "../PatchedFunctionData.h"
 | |
| #include "version.h"
 | |
| #include <coreinit/memheap.h>
 | |
| #include <memory>
 | |
| #include <vector>
 | |
| 
 | |
| #define MODULE_VERSION      "v0.1"
 | |
| #define MODULE_VERSION_FULL MODULE_VERSION MODULE_VERSION_EXTRA
 | |
| 
 | |
| #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;
 | |
| 
 | |
| extern void *(*gMEMAllocFromDefaultHeapExForThreads)(uint32_t size, int align);
 | |
| extern void (*gMEMFreeToDefaultHeapForThreads)(void *ptr); | 
