WiiUPluginLoaderBackend/source/plugin/PluginData.h

60 lines
1.6 KiB
C
Raw Normal View History

/****************************************************************************
* Copyright (C) 2020 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
2020-05-03 12:30:15 +02:00
#include <optional>
#include <vector>
#include <malloc.h>
#include <coreinit/memexpheap.h>
2020-12-26 14:17:50 +01:00
#include "../elfio/elfio.hpp"
using namespace ELFIO;
enum eMemoryTypes {
eMemTypeMEM2,
eMemTypeExpHeap
};
class PluginData {
public:
2021-09-25 14:26:18 +02:00
~PluginData() = default;
void freeMemory();
2020-05-03 12:30:15 +02:00
2020-05-17 20:43:04 +02:00
PluginData(const PluginData &obj);
2020-12-26 14:17:50 +01:00
PluginData() = default;
2020-12-26 14:17:50 +01:00
void *buffer = nullptr;
MEMHeapHandle heapHandle{};
eMemoryTypes memoryType;
size_t length = 0;
private:
2020-12-26 14:17:50 +01:00
explicit PluginData(const std::vector<uint8_t> &buffer);
2021-09-25 14:26:18 +02:00
PluginData(const std::vector<uint8_t> &input, MEMHeapHandle heapHandle, eMemoryTypes memoryType);
2020-05-03 12:30:15 +02:00
friend class PluginDataFactory;
2020-05-03 12:30:15 +02:00
friend class PluginContainer;
2020-05-03 12:30:15 +02:00
2020-05-17 20:45:10 +02:00
friend class PluginDataPersistence;
};