mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
e16249b672
* define MxLong/MxULong The "long" type has different sizes on different platforms, and this may cause issues. * use DWORD to match RegQueryValueExA arg
41 lines
796 B
C++
41 lines
796 B
C++
#ifndef MXMEDIAPRESENTER_H
|
|
#define MXMEDIAPRESENTER_H
|
|
|
|
#include "mxpresenter.h"
|
|
|
|
#include "decomp.h"
|
|
|
|
// VTABLE 0x100d4cd8
|
|
class MxMediaPresenter : public MxPresenter
|
|
{
|
|
public:
|
|
inline MxMediaPresenter()
|
|
{
|
|
Init();
|
|
}
|
|
|
|
virtual MxLong Tickle() override; // vtable+0x8, override MxCore
|
|
|
|
// OFFSET: LEGO1 0x1000c5c0
|
|
inline virtual const char *ClassName() const override // vtable+0xc
|
|
{
|
|
// 0x100f074c
|
|
return "MxMediaPresenter";
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x1000c5d0
|
|
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(name, MxMediaPresenter::ClassName()) || MxPresenter::IsA(name);
|
|
}
|
|
|
|
undefined4 m_unk40;
|
|
undefined4 m_unk44;
|
|
undefined4 m_unk48;
|
|
undefined4 m_unk4c;
|
|
private:
|
|
void Init();
|
|
|
|
};
|
|
|
|
#endif // MXMEDIAPRESENTER_H
|