Fix windows build. Fix InterlockedIncrement for old gcc. TOTEST on linux.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1394 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
memberTwo.mb2
2008-12-04 13:43:03 +00:00
parent 2e9ffbc136
commit f66b7999d8
5 changed files with 44 additions and 41 deletions

View File

@ -107,9 +107,9 @@ void SleepCurrentThread(int ms);
void SetCurrentThreadName(const char *name);
LONG InterlockedExchangeAdd(LONG *Addend, LONG Increment);
LONG InterlockedExchange(LONG *Addend, LONG Increment);
LONG InterlockedIncrement(LONG *Addend);
LONG SyncInterlockedExchangeAdd(LONG *Dest, LONG Val);
LONG SyncInterlockedExchange(LONG *Dest, LONG Val);
LONG SyncInterlockedIncrement(LONG *Dest);
} // end of namespace Common