ntdll: Export RtlInterlockedCompareExchange64.
This commit is contained in:
parent
6d1ba98f5b
commit
98ca10c89d
|
@ -19,6 +19,9 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "wine/port.h"
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "ntstatus.h"
|
||||
|
@ -375,6 +378,15 @@ LONGLONG WINAPI RtlExtendedMagicDivide(
|
|||
} /* if */
|
||||
}
|
||||
|
||||
|
||||
/*************************************************************************
|
||||
* RtlInterlockedCompareExchange64 (NTDLL.@)
|
||||
*/
|
||||
LONGLONG WINAPI RtlInterlockedCompareExchange64( LONGLONG *dest, LONGLONG xchg, LONGLONG compare )
|
||||
{
|
||||
return interlocked_cmpxchg64( dest, xchg, compare );
|
||||
}
|
||||
|
||||
#endif /* _WIN64 */
|
||||
|
||||
/******************************************************************************
|
||||
|
|
|
@ -684,6 +684,7 @@
|
|||
@ stdcall RtlInt64ToUnicodeString(double long ptr)
|
||||
@ stdcall RtlIntegerToChar(long long long ptr)
|
||||
@ stdcall RtlIntegerToUnicodeString(long long ptr)
|
||||
@ stdcall -arch=win32 -ret64 RtlInterlockedCompareExchange64(ptr double double)
|
||||
@ stdcall RtlInterlockedFlushSList(ptr)
|
||||
@ stdcall RtlInterlockedPopEntrySList(ptr)
|
||||
@ stdcall RtlInterlockedPushEntrySList(ptr ptr)
|
||||
|
|
Loading…
Reference in New Issue