forked from dolphin-emu/dolphin
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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user