mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-13 03:31:15 +00:00
31 lines
688 B
C++
31 lines
688 B
C++
#ifndef MXDSSOURCE_H
|
|
#define MXDSSOURCE_H
|
|
|
|
#include "mxcore.h"
|
|
|
|
class MxDSSource : public MxCore
|
|
{
|
|
public:
|
|
MxDSSource()
|
|
: m_lengthInDWords(0)
|
|
, m_pBuffer(0)
|
|
, m_position(-1)
|
|
{}
|
|
|
|
virtual long Open(unsigned long) = 0;
|
|
virtual long Close() = 0;
|
|
virtual void SomethingWhichCallsRead(void* pUnknownObject);
|
|
virtual long Read(unsigned char *, unsigned long) = 0;
|
|
virtual long Seek(long, int) = 0;
|
|
virtual unsigned long GetBufferSize() = 0;
|
|
virtual unsigned long GetStreamBuffersNum() = 0;
|
|
virtual long GetLengthInDWords();
|
|
virtual char* GetBuffer();
|
|
|
|
protected:
|
|
unsigned long m_lengthInDWords;
|
|
char* m_pBuffer;
|
|
long m_position;
|
|
};
|
|
|
|
#endif // MXDSSOURCE_H
|