Stefan Dösinger : include: Remove an incorrect InterlockedCompareExchange128 function.

Alexandre Julliard julliard at winehq.org
Wed Feb 9 16:03:50 CST 2022


Module: wine
Branch: master
Commit: 2f7c6659991e608f2e34b607c088b695c9e9b540
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=2f7c6659991e608f2e34b607c088b695c9e9b540

Author: Stefan Dösinger <stefan at codeweavers.com>
Date:   Tue Feb  1 16:58:22 2022 +0300

include: Remove an incorrect InterlockedCompareExchange128 function.

Signed-off-by: Stefan Dösinger <stefan at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/winnt.h | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/include/winnt.h b/include/winnt.h
index 698f29d990e..bd64b092369 100644
--- a/include/winnt.h
+++ b/include/winnt.h
@@ -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
 




More information about the wine-cvs mailing list