mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-26 17:46:38 -05:00
114a959741
* mxdiskstreamcontroller vtable + MxStreamController::vtable0x20
* stub MxDiskStreamController::Open
* MxDiskStreamProvider
* MxNextActionDataStart
* Revert "MxNextActionDataStart"
This reverts commit 41e8cfa2f1
.
* Match MxStreamController::vtable0x20
---------
Co-authored-by: Christian Semmler <mail@csemmler.com>
20 lines
No EOL
393 B
C++
20 lines
No EOL
393 B
C++
#include "mxdssource.h"
|
|
|
|
// OFFSET: LEGO1 0x100bffd0
|
|
void MxDSSource::SomethingWhichCallsRead(void* pUnknownObject)
|
|
{
|
|
// TODO: Calls read, reading into a buffer somewhere in pUnknownObject.
|
|
Read(NULL, 0);
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100bfff0
|
|
MxLong MxDSSource::GetLengthInDWords()
|
|
{
|
|
return m_lengthInDWords;
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100c0000
|
|
MxU32 *MxDSSource::GetBuffer()
|
|
{
|
|
return m_pBuffer;
|
|
} |