added more definitions

Also clarify .exe on script because Wine cares about that
This commit is contained in:
itsmattkc
2023-06-18 20:45:25 -07:00
parent 5aa7921e90
commit 319b52f248
8 changed files with 61 additions and 33 deletions

View File

@@ -1,5 +1,6 @@
#include "mxautolocker.h"
// OFFSET: LEGO1 0x100b8ed0
MxAutoLocker::MxAutoLocker(MxCriticalSection *critsect)
{
this->m_criticalSection = critsect;
@@ -7,6 +8,7 @@ MxAutoLocker::MxAutoLocker(MxCriticalSection *critsect)
this->m_criticalSection->Enter();
}
// OFFSET: LEGO1 0x100b8ef0
MxAutoLocker::~MxAutoLocker()
{
if (this->m_criticalSection != 0)