mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-05 12:35:06 +01:00
17 lines
723 B
C++
17 lines
723 B
C++
|
#include "PluginInformation.h"
|
||
|
|
||
|
PluginInformation::PluginInformation(const PluginInformation& other) {
|
||
|
for (size_t i=0; i<other.hook_data_list.size(); i++){
|
||
|
hook_data_list.push_back(other.hook_data_list[i]);
|
||
|
}
|
||
|
for (size_t i=0; i<other.function_data_list.size(); i++){
|
||
|
function_data_list.push_back(other.function_data_list[i]);
|
||
|
}
|
||
|
for (size_t i=0; i<other.relocation_data_list.size(); i++){
|
||
|
relocation_data_list.push_back(other.relocation_data_list[i]);
|
||
|
}
|
||
|
section_info_list = other.section_info_list;
|
||
|
trampolinId = other.trampolinId;
|
||
|
allocatedTextMemoryAddress = other.allocatedTextMemoryAddress;
|
||
|
allocatedDataMemoryAddress = other.allocatedDataMemoryAddress;
|
||
|
}
|