mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 16:34:06 +00:00

* define MxLong/MxULong The "long" type has different sizes on different platforms, and this may cause issues. * use DWORD to match RegQueryValueExA arg
22 lines
442 B
C++
22 lines
442 B
C++
#ifndef MXTICKLEMANAGER_H
|
|
#define MXTICKLEMANAGER_H
|
|
|
|
#include "mxcore.h"
|
|
|
|
// VTABLE 0x100d86d8
|
|
class MxTickleManager : public MxCore
|
|
{
|
|
public:
|
|
virtual ~MxTickleManager();
|
|
|
|
virtual MxLong Tickle();
|
|
virtual const char *ClassName() const;
|
|
virtual MxBool IsA(const char *name) const;
|
|
virtual void vtable14();
|
|
virtual void vtable18();
|
|
virtual void vtable1c(void *v, int p);
|
|
virtual void vtable20();
|
|
};
|
|
|
|
#endif // MXTICKLEMANAGER_H
|