Fixes #4897 by corrected kernel32!Interlocked function definitions
parent
cdef992d6b
commit
aa79b71e35
|
@ -2159,13 +2159,13 @@ class Def_kernel32
|
|||
])
|
||||
|
||||
dll.add_function( 'InterlockedCompareExchange', 'DWORD',[
|
||||
["PDWORD","Destination","inout"],
|
||||
["PDWORD","Destination","in"],
|
||||
["DWORD","ExChange","in"],
|
||||
["DWORD","Comperand","in"],
|
||||
])
|
||||
|
||||
dll.add_function( 'InterlockedCompareExchange64', 'LPVOID',[
|
||||
["PBLOB","Destination","inout"],
|
||||
["PBLOB","Destination","in"],
|
||||
["PBLOB","ExChange","in"],
|
||||
["PBLOB","Comperand","in"],
|
||||
])
|
||||
|
@ -2175,7 +2175,7 @@ class Def_kernel32
|
|||
])
|
||||
|
||||
dll.add_function( 'InterlockedExchange', 'DWORD',[
|
||||
["PDWORD","Target","inout"],
|
||||
["PDWORD","Target","in"],
|
||||
["DWORD","Value","in"],
|
||||
])
|
||||
|
||||
|
|
Loading…
Reference in New Issue