Commit 2f7c6659 authored by Stefan Dösinger's avatar Stefan Dösinger Committed by Alexandre Julliard

include: Remove an incorrect InterlockedCompareExchange128 function.

parent 20c2e5ba
......@@ -6500,10 +6500,6 @@ static FORCEINLINE void MemoryBarrier(void)
#pragma intrinsic(_InterlockedCompareExchange128)
unsigned char _InterlockedCompareExchange128(volatile __int64 *, __int64, __int64, __int64 *);
static FORCEINLINE unsigned char WINAPI InterlockedCompareExchange128( volatile __int64 *dest, __int64 xchg_high, __int64 xchg_low, __int64 *compare )
{
return _InterlockedCompareExchange128( dest, xchg_high, xchg_low, compare );
}
#else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment