mirror of
https://github.com/wiiu-env/WUMSLoader.git
synced 2026-09-27 12:27:06 -05:00
Support for WUMS 0.3.1
This commit is contained in:
@@ -148,22 +148,22 @@ public:
|
||||
return this->export_name;
|
||||
}
|
||||
|
||||
[[nodiscard]] bool isSkipEntrypoint() const {
|
||||
return this->skipEntrypoint;
|
||||
}
|
||||
|
||||
[[nodiscard]] bool isInitBeforeRelocationDoneHook() const {
|
||||
return this->initBeforeRelocationDoneHook;
|
||||
}
|
||||
|
||||
void setSkipEntrypoint(bool value) {
|
||||
this->skipEntrypoint = value;
|
||||
}
|
||||
|
||||
void setInitBeforeRelocationDoneHook(bool value) {
|
||||
this->initBeforeRelocationDoneHook = value;
|
||||
}
|
||||
|
||||
[[nodiscard]] bool isSkipInitFini() const {
|
||||
return this->skipInitFini;
|
||||
}
|
||||
|
||||
void setSkipInitFini(bool value) {
|
||||
this->skipInitFini = value;
|
||||
}
|
||||
|
||||
bool relocationsDone = false;
|
||||
private:
|
||||
std::vector<std::shared_ptr<RelocationData>> relocation_data_list;
|
||||
@@ -181,6 +181,6 @@ private:
|
||||
uint32_t startAddress = 0;
|
||||
uint32_t endAddress = 0;
|
||||
uint32_t entrypoint = 0;
|
||||
bool skipEntrypoint = false;
|
||||
bool initBeforeRelocationDoneHook = false;
|
||||
bool skipInitFini = false;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user