MxDiskStreamProvider constructor (#131)

* MxDiskStreamProvider constructor

* Add work-in-progress list struct to MxDiskStreamProvider

---------

Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
Joshua Peisach
2023-09-29 17:53:02 -04:00
committed by GitHub
parent 0dc8dd641a
commit 06c7ba2c37
3 changed files with 45 additions and 11 deletions

View File

@@ -8,6 +8,11 @@
class MxStreamProvider : public MxCore
{
public:
inline MxStreamProvider() {
this->m_pLookup = NULL;
this->m_pFile = NULL;
}
// OFFSET: LEGO1 0x100d07e0
inline virtual const char *ClassName() const override // vtable+0x0c
{
@@ -20,7 +25,7 @@ public:
return !strcmp(name, MxStreamProvider::ClassName()) || MxCore::IsA(name);
}
private:
protected:
void *m_pLookup;
MxDSFile* m_pFile;
};