2018-09-22 19:52:52 +02:00
|
|
|
/****************************************************************************
|
2020-04-29 18:02:36 +02:00
|
|
|
* Copyright (C) 2018-2020 Maschell
|
2018-09-22 19:52:52 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
2020-04-29 18:02:36 +02:00
|
|
|
#pragma once
|
2018-09-22 19:52:52 +02:00
|
|
|
|
|
|
|
#include <wups.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class FunctionData {
|
|
|
|
|
|
|
|
public:
|
2020-04-29 18:02:36 +02:00
|
|
|
FunctionData(void * paddress, void * vaddress, const std::string& name, wups_loader_library_type_t library, void * replaceAddr, void * replaceCall) {
|
2019-11-16 15:01:01 +01:00
|
|
|
this->paddress = paddress;
|
|
|
|
this->vaddress = vaddress;
|
2018-09-22 19:52:52 +02:00
|
|
|
this->name = name;
|
|
|
|
this->library = library;
|
2020-04-29 18:02:36 +02:00
|
|
|
this->replaceAddr = replaceAddr;
|
|
|
|
this->replaceCall = replaceCall;
|
2018-09-22 19:52:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
~FunctionData() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-04-29 18:02:36 +02:00
|
|
|
const std::string& getName() const{
|
2018-09-22 19:52:52 +02:00
|
|
|
return this->name;
|
|
|
|
}
|
|
|
|
|
2020-04-29 18:02:36 +02:00
|
|
|
wups_loader_library_type_t getLibrary() const{
|
2018-09-22 19:52:52 +02:00
|
|
|
return this->library;
|
|
|
|
}
|
|
|
|
|
2020-04-29 18:02:36 +02:00
|
|
|
const void * getPhysicalAddress() const{
|
2019-11-16 15:01:01 +01:00
|
|
|
return paddress;
|
|
|
|
}
|
2020-04-29 18:02:36 +02:00
|
|
|
const void * getVirtualAddress() const{
|
2019-11-16 15:01:01 +01:00
|
|
|
return vaddress;
|
|
|
|
}
|
|
|
|
|
2020-04-29 18:02:36 +02:00
|
|
|
const void * getReplaceAddress() const{
|
2018-09-22 19:52:52 +02:00
|
|
|
return replaceAddr;
|
|
|
|
}
|
|
|
|
|
2020-04-29 18:02:36 +02:00
|
|
|
const void * getReplaceCall() const{
|
2018-09-22 19:52:52 +02:00
|
|
|
return replaceCall;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2019-11-16 15:01:01 +01:00
|
|
|
void * paddress = NULL;
|
|
|
|
void * vaddress = NULL;
|
2018-09-22 19:52:52 +02:00
|
|
|
std::string name;
|
|
|
|
wups_loader_library_type_t library;
|
|
|
|
void * replaceAddr = NULL;
|
|
|
|
void * replaceCall = NULL;
|
|
|
|
};
|
|
|
|
|