mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -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
21 lines
442 B
C++
21 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
|