From c6e1418ab32d18aea24f558c56b176093dfebbe4 Mon Sep 17 00:00:00 2001 From: nakeee Date: Thu, 4 Dec 2008 11:59:03 +0000 Subject: [PATCH] forgot a file git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1392 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Common/Src/Thread.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Source/Core/Common/Src/Thread.h b/Source/Core/Common/Src/Thread.h index 33f62fea9c..37d57563a4 100644 --- a/Source/Core/Common/Src/Thread.h +++ b/Source/Core/Common/Src/Thread.h @@ -107,11 +107,9 @@ void SleepCurrentThread(int ms); void SetCurrentThreadName(const char *name); -#ifndef _WIN32 -int InterlockedExchangeAdd(int *Addend, int Increment); -int InterlockedExchange(int *Addend, int Increment); -int InterlockedIncrement(int *Addend); -#endif +LONG LONGerlockedExchangeAdd(LONG *Addend, LONG Increment); +LONG LONGerlockedExchange(LONG *Addend, LONG Increment); +LONG LONGerlockedIncrement(LONG *Addend); } // end of namespace Common