mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
f3b0de0609
* FUN_100c6f80 * AllocateBuffer * Update mxdsbuffer.h * Update mxdsbuffer.cpp * Update mxdsbuffer.cpp * Return reference * Fix delete call * Fix GetWriteOffset * Remove cast --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
21 lines
373 B
C++
21 lines
373 B
C++
#include "mxdssource.h"
|
|
|
|
#include "mxdsbuffer.h"
|
|
|
|
// OFFSET: LEGO1 0x100bffd0
|
|
void MxDSSource::ReadToBuffer(MxDSBuffer* p_buffer)
|
|
{
|
|
Read(p_buffer->GetBuffer(), p_buffer->GetWriteOffset());
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100bfff0
|
|
MxLong MxDSSource::GetLengthInDWords()
|
|
{
|
|
return m_lengthInDWords;
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100c0000
|
|
MxU32* MxDSSource::GetBuffer()
|
|
{
|
|
return m_pBuffer;
|
|
}
|