From 0a2678973b3668ad42ff0d6d44cb8d26cae6053a Mon Sep 17 00:00:00 2001 From: Laytan Laats Date: Tue, 29 Aug 2023 10:44:21 +0200 Subject: [PATCH] Fix the OVERLAPPED_ENTRY type definition --- core/sys/windows/types.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/sys/windows/types.odin b/core/sys/windows/types.odin index 8971f2875..d5377eb2f 100644 --- a/core/sys/windows/types.odin +++ b/core/sys/windows/types.odin @@ -2475,9 +2475,9 @@ OVERLAPPED :: struct { } OVERLAPPED_ENTRY :: struct { - lpCompletionKey: c_ulong, + lpCompletionKey: ULONG_PTR, lpOverlapped: ^OVERLAPPED, - Internal: c_ulong, + Internal: ULONG_PTR, dwNumberOfBytesTransferred: DWORD, }