mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -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
28 lines
No EOL
358 B
C++
28 lines
No EOL
358 B
C++
#include "mxcore.h"
|
|
|
|
// 0x1010141c
|
|
unsigned int g_mxcoreCount = 0;
|
|
|
|
// OFFSET: LEGO1 0x100ae1a0
|
|
MxCore::MxCore()
|
|
{
|
|
m_id = g_mxcoreCount;
|
|
g_mxcoreCount++;
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100ae1e0
|
|
MxCore::~MxCore()
|
|
{
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100ae1f0
|
|
MxLong MxCore::Notify(MxParam &p)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x10001f70
|
|
MxLong MxCore::Tickle()
|
|
{
|
|
return 0;
|
|
} |