mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:35:47 +00:00
[NTOS] Fix 64 bit issues
This commit is contained in:
parent
6dcf3c29e0
commit
ff7cc6f37e
7 changed files with 38 additions and 36 deletions
|
@ -1478,5 +1478,8 @@ XIPInit(
|
|||
#define InterlockedCompareExchangeUL(Destination, Exchange, Comperand) \
|
||||
(ULONG)InterlockedCompareExchange((PLONG)(Destination), (LONG)(Exchange), (LONG)(Comperand))
|
||||
|
||||
#define InterlockedCompareExchangeSizeT(Destination, Exchange, Comperand) \
|
||||
(SIZE_T)InterlockedCompareExchangePointer((PVOID*)(Destination), (PVOID)(SIZE_T)(Exchange), (PVOID)(SIZE_T)(Comperand))
|
||||
|
||||
#define ExfInterlockedCompareExchange64UL(Destination, Exchange, Comperand) \
|
||||
(ULONGLONG)ExfInterlockedCompareExchange64((PLONGLONG)(Destination), (PLONGLONG)(Exchange), (PLONGLONG)(Comperand))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue