mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
114a959741
* mxdiskstreamcontroller vtable + MxStreamController::vtable0x20 * stub MxDiskStreamController::Open * MxDiskStreamProvider * MxNextActionDataStart * Revert "MxNextActionDataStart" This reverts commit 41e8cfa2f11ea4f9b39df0bdf0c3657fdbd9efe9. * 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;
|
|
} |