mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
MxStream provider and controller vtables (#191)
* MxStreamProvider and MxRamStreamProvider vtable * Update mxramstreamprovider.h * Match IsA * Fixes, improvements --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
@@ -6,7 +6,22 @@
|
||||
// VTABLE 0x100dd0d0
|
||||
class MxRAMStreamProvider : public MxStreamProvider
|
||||
{
|
||||
public:
|
||||
MxRAMStreamProvider();
|
||||
virtual ~MxRAMStreamProvider() override;
|
||||
|
||||
virtual MxResult SetResourceToGet(void* p_resource) override; //vtable+0x14
|
||||
virtual MxU32 GetFileSize() override; //vtable+0x18
|
||||
virtual MxU32 vtable0x1C() override; //vtable+0x1c
|
||||
virtual MxU32 GetLengthInDWords() override; //vtable+0x24
|
||||
virtual void* GetBufferForDWords() override; //vtable+0x28
|
||||
|
||||
protected:
|
||||
MxU32 m_bufferSize;
|
||||
MxU32 m_fileSize;
|
||||
void* m_pBufferOfFileSize;
|
||||
MxU32 m_lengthInDWords;
|
||||
void* m_bufferForDWords;
|
||||
};
|
||||
|
||||
#endif // MXRAMSTREAMPROVIDER_H
|
||||
|
Reference in New Issue
Block a user