diff options
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Common/Src/Thread.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/Common/Src/Thread.h b/Source/Core/Common/Src/Thread.h index 37d57563a4..116eb7c39c 100644 --- a/Source/Core/Common/Src/Thread.h +++ b/Source/Core/Common/Src/Thread.h @@ -107,9 +107,9 @@ void SleepCurrentThread(int ms); void SetCurrentThreadName(const char *name);
-LONG LONGerlockedExchangeAdd(LONG *Addend, LONG Increment);
-LONG LONGerlockedExchange(LONG *Addend, LONG Increment);
-LONG LONGerlockedIncrement(LONG *Addend);
+LONG InterlockedExchangeAdd(LONG *Addend, LONG Increment);
+LONG InterlockedExchange(LONG *Addend, LONG Increment);
+LONG InterlockedIncrement(LONG *Addend);
} // end of namespace Common
|
