mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-05 20:45:07 +01:00
Allow direct access to plugin data buffers
This commit is contained in:
parent
192b00baae
commit
169bea55be
@ -44,30 +44,34 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void freeMemory();
|
void freeMemory();
|
||||||
|
|
||||||
private:
|
void *getBuffer() const {
|
||||||
|
return this->buffer;
|
||||||
|
}
|
||||||
|
|
||||||
PluginData(const PluginData &obj);
|
PluginData(const PluginData &obj);
|
||||||
|
|
||||||
PluginData() {
|
PluginData() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void *buffer;
|
||||||
|
MEMHeapHandle heapHandle;
|
||||||
|
eMemoryTypes memoryType;
|
||||||
|
size_t length;
|
||||||
|
|
||||||
|
private:
|
||||||
PluginData(std::vector<uint8_t> buffer);
|
PluginData(std::vector<uint8_t> buffer);
|
||||||
|
|
||||||
PluginData(std::vector<uint8_t> input, MEMHeapHandle heapHandle, eMemoryTypes memoryType);
|
PluginData(std::vector<uint8_t> input, MEMHeapHandle heapHandle, eMemoryTypes memoryType);
|
||||||
|
|
||||||
|
|
||||||
void loadReader();
|
void loadReader();
|
||||||
|
|
||||||
static std::optional<PluginData> createFromExistingData(const void *buffer, MEMHeapHandle heapHandle, eMemoryTypes memoryType, const size_t length);
|
static std::optional<PluginData> createFromExistingData(const void *buffer, MEMHeapHandle heapHandle, eMemoryTypes memoryType, const size_t length);
|
||||||
|
|
||||||
std::optional<elfio *> reader;
|
std::optional<elfio *> reader;
|
||||||
|
|
||||||
elfio *nReader = NULL;
|
elfio *nReader = NULL;
|
||||||
void *buffer;
|
|
||||||
MEMHeapHandle heapHandle;
|
|
||||||
eMemoryTypes memoryType;
|
|
||||||
size_t length;
|
|
||||||
|
|
||||||
friend class PluginDataFactory;
|
friend class PluginDataFactory;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user