mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-21 20:29:17 +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();
|
||||
|
||||
private:
|
||||
void *getBuffer() const {
|
||||
return this->buffer;
|
||||
}
|
||||
|
||||
PluginData(const PluginData &obj);
|
||||
|
||||
PluginData() {
|
||||
}
|
||||
|
||||
void *buffer;
|
||||
MEMHeapHandle heapHandle;
|
||||
eMemoryTypes memoryType;
|
||||
size_t length;
|
||||
|
||||
private:
|
||||
PluginData(std::vector<uint8_t> buffer);
|
||||
|
||||
PluginData(std::vector<uint8_t> input, MEMHeapHandle heapHandle, eMemoryTypes memoryType);
|
||||
|
||||
|
||||
void loadReader();
|
||||
|
||||
static std::optional<PluginData> createFromExistingData(const void *buffer, MEMHeapHandle heapHandle, eMemoryTypes memoryType, const size_t length);
|
||||
|
||||
std::optional<elfio *> reader;
|
||||
|
||||
elfio *nReader = NULL;
|
||||
void *buffer;
|
||||
MEMHeapHandle heapHandle;
|
||||
eMemoryTypes memoryType;
|
||||
size_t length;
|
||||
|
||||
friend class PluginDataFactory;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user