Merge pull request #2775 from laytan/fix-overlapped-entry-type

Fix the OVERLAPPED_ENTRY type definition
This commit is contained in:
Jeroen van Rijn
2023-08-29 10:56:01 +02:00
committed by GitHub

View File

@@ -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,
}