diff options
| author | gingerBill <bill@gingerbill.org> | 2022-05-12 14:21:25 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-05-12 14:21:25 +0100 |
| commit | 0c45a46aab99fdd924afd8e0385fd27e40c60dec (patch) | |
| tree | 8bfa0a837e635bed17388fb20e84933b672fc98a /core/sys/windows/synchronization.odin | |
| parent | d1fc9d3073ac85e643199d7558c6fce548084ba3 (diff) | |
Remove `A` calls in favour of `W` calls
Diffstat (limited to 'core/sys/windows/synchronization.odin')
| -rw-r--r-- | core/sys/windows/synchronization.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/sys/windows/synchronization.odin b/core/sys/windows/synchronization.odin index c4e1d2188..c98730aa0 100644 --- a/core/sys/windows/synchronization.odin +++ b/core/sys/windows/synchronization.odin @@ -5,7 +5,7 @@ foreign import Synchronization "system:Synchronization.lib" @(default_calling_convention="stdcall") foreign Synchronization { - WaitOnAddress :: proc(Address: PVOID, CompareAddress: PVOID, AddressSize: SIZE_T, dwMilliseconds: DWORD) -> BOOL --- + WaitOnAddress :: proc(Address: PVOID, CompareAddress: PVOID, AddressSize: SIZE_T, dwMilliseconds: DWORD) -> BOOL --- WakeByAddressSingle :: proc(Address: PVOID) --- - WakeByAddressAll :: proc(Address: PVOID) --- + WakeByAddressAll :: proc(Address: PVOID) --- } |