query replace mistake

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1393 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-12-04 12:07:38 +00:00
parent c6e1418ab3
commit 2e9ffbc136
1 changed files with 3 additions and 3 deletions

View File

@ -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