mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
14 lines
307 B
C++
14 lines
307 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
|
||
|
long MxDSSource::GetLengthInDWords()
|
||
|
{
|
||
|
return m_lengthInDWords;
|
||
|
}
|