mirror of
https://github.com/wiiu-env/WUMSLoader.git
synced 2026-04-30 12:01:19 -05:00
16 lines
688 B
C++
16 lines
688 B
C++
#pragma once
|
|
#include "module/ModuleData.h"
|
|
#include <coreinit/dynload.h>
|
|
#include <map>
|
|
#include <vector>
|
|
|
|
bool ResolveRelocations(const std::vector<std::shared_ptr<ModuleData>> &loadedModules,
|
|
bool skipUnloadedRpl,
|
|
std::map<std::string, OSDynLoad_Module> &usedRPls);
|
|
|
|
bool doRelocation(const std::vector<std::shared_ptr<ModuleData>> &moduleList,
|
|
const std::vector<std::unique_ptr<RelocationData>> &relocData,
|
|
relocation_trampoline_entry_t *tramp_data,
|
|
uint32_t tramp_length,
|
|
std::map<std::string, OSDynLoad_Module> &usedRPls,
|
|
bool skipUnloadedRpl); |