mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix wrong function name
Should be 'ThreadInterlockedCompareExchange'.
This commit is contained in:
parent
3ea7cc1cd4
commit
b0880f8f0e
@ -9,7 +9,7 @@
|
||||
#include "core/stdafx.h"
|
||||
#include "threadtools.h"
|
||||
|
||||
LONG ThreadInterlockedCompareExchange64(LONG volatile* pDest, int64 value, int64 comperand)
|
||||
int32 ThreadInterlockedCompareExchange(LONG volatile* pDest, int32 value, int32 comperand)
|
||||
{
|
||||
return _InterlockedCompareExchange(pDest, comperand, value);
|
||||
}
|
||||
|
@ -65,7 +65,7 @@ ThreadId_t ThreadGetCurrentId();
|
||||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
LONG ThreadInterlockedCompareExchange64(LONG volatile* pDest, int64 value, int64 comperand);
|
||||
int32 ThreadInterlockedCompareExchange(LONG volatile* pDest, int32 value, int32 comperand);
|
||||
bool ThreadInterlockedAssignIf(LONG volatile* p, int32 value, int32 comperand);
|
||||
int64 ThreadInterlockedCompareExchange64(int64 volatile* pDest, int64 value, int64 comperand);
|
||||
bool ThreadInterlockedAssignIf64(int64 volatile* pDest, int64 value, int64 comperand);
|
||||
|
Loading…
x
Reference in New Issue
Block a user