2023-06-27 14:44:02 -04:00
|
|
|
#include "mxdssource.h"
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x100bffd0
|
2023-10-13 17:36:16 -04:00
|
|
|
void MxDSSource::FUN_100bffd0(void* p_unk)
|
2023-06-27 14:44:02 -04:00
|
|
|
{
|
2023-10-13 17:36:16 -04:00
|
|
|
// TODO: Calls read, reading into a buffer somewhere in p_unk.
|
2023-06-27 14:44:02 -04:00
|
|
|
Read(NULL, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x100bfff0
|
2023-07-02 04:05:49 -04:00
|
|
|
MxLong MxDSSource::GetLengthInDWords()
|
2023-06-27 14:44:02 -04:00
|
|
|
{
|
|
|
|
return m_lengthInDWords;
|
2023-09-20 16:22:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x100c0000
|
2023-10-10 04:27:00 -04:00
|
|
|
MxU32 *MxDSSource::GetBuffer()
|
2023-09-20 16:22:57 -04:00
|
|
|
{
|
|
|
|
return m_pBuffer;
|
2023-06-27 14:44:02 -04:00
|
|
|
}
|