WiiUPluginLoaderBackend/source/plugin/RelocationData.h

54 lines
1.7 KiB
C
Raw Normal View History

2018-09-22 19:52:52 +02:00
/****************************************************************************
* Copyright (C) 2018 Maschell
*
* 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/>.
****************************************************************************/
#pragma once
2018-09-22 19:52:52 +02:00
2022-02-04 16:25:44 +01:00
#include "ImportRPLInformation.h"
2024-11-27 20:44:36 +01:00
#include <cstdint>
2022-02-04 16:25:44 +01:00
#include <memory>
2018-09-22 19:52:52 +02:00
#include <string>
class RelocationData {
public:
2024-11-27 20:44:36 +01:00
RelocationData(char type, size_t offset, int32_t addend, void *destination, std::string name, std::shared_ptr<ImportRPLInformation> rplInfo);
2018-09-22 19:52:52 +02:00
2024-11-27 20:44:36 +01:00
RelocationData(const RelocationData &o2);
2018-09-22 19:52:52 +02:00
2024-11-27 20:44:36 +01:00
virtual ~RelocationData();
2018-09-22 19:52:52 +02:00
2024-11-27 20:44:36 +01:00
[[nodiscard]] char getType() const;
2018-09-22 19:52:52 +02:00
2024-11-27 20:44:36 +01:00
[[nodiscard]] size_t getOffset() const;
2018-09-22 19:52:52 +02:00
2024-11-27 20:44:36 +01:00
[[nodiscard]] int32_t getAddend() const;
2018-09-22 19:52:52 +02:00
2024-11-27 20:44:36 +01:00
[[nodiscard]] const void *getDestination() const;
2018-09-22 19:52:52 +02:00
2024-11-27 20:44:36 +01:00
[[nodiscard]] const std::string &getName() const;
2018-09-22 19:52:52 +02:00
2024-11-27 20:44:36 +01:00
[[nodiscard]] const ImportRPLInformation &getImportRPLInformation() const;
2018-09-22 19:52:52 +02:00
private:
2024-11-27 20:44:36 +01:00
char mType;
size_t mOffset;
int32_t mAddend;
void *mDestination;
std::string mName;
std::shared_ptr<ImportRPLInformation> mRPLInfo;
2018-09-22 19:52:52 +02:00
};