diff options
| author | nakeee <nakeee@gmail.com> | 2008-12-04 12:07:38 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2008-12-04 12:07:38 +0000 |
| commit | 2e9ffbc136f8e442df58bfe973c09353d01a6cf3 (patch) | |
| tree | 216090328efca2eb1b27332296cb366ca97e2bbb | |
| parent | c6e1418ab32d18aea24f558c56b176093dfebbe4 (diff) | |
query replace mistake
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1393 8ced0084-cf51-0410-be5f-012b33b47a6e
| -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
|
