isle/LEGO1/mxstreamprovider.h
Mark Langen 889fd886f0
MxSemphore + MxThread + MxThread implementions (#80)
* Add MxSemphore + MxThread and the two implementations I could find
  of MxThread (consumers extend it and override the Run method).

* Implement a function in MxDiskStreamProvider which uses thread and
  semaphore to confirm correct layout / size of those classes.

* All 100% match except two functions with a pair of registers swapped.
2023-07-07 11:00:48 -07:00

28 lines
584 B
C++

#ifndef MXSTREAMPROVIDER_H
#define MXSTREAMPROVIDER_H
#include "mxcore.h"
#include "mxdsfile.h"
// VTABLE 0x100dd100
class MxStreamProvider : public MxCore
{
public:
// OFFSET: LEGO1 0x100d07e0
inline virtual const char *ClassName() const override // vtable+0x0c
{
return "MxStreamProvider";
}
// OFFSET: LEGO1 0x100d07f0
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
{
return !strcmp(name, MxStreamProvider::ClassName()) || MxCore::IsA(name);
}
private:
void *m_pLookup;
MxDSFile* m_pFile;
};
#endif // MXSTREAMPROVIDER_H