From 97eb7e43f9ea014552965fe9d5d2cd7c2ff62c16 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sun, 16 Apr 2023 08:52:29 -0400 Subject: [PATCH] 32 bit compat --- core.d | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core.d b/core.d index 8eb5944..03bfeb5 100644 --- a/core.d +++ b/core.d @@ -3027,7 +3027,7 @@ class AsyncReceiveRequest : AsyncOperationRequest { version(Windows) { auto opCall(OVERLAPPED* overlapped, LPOVERLAPPED_COMPLETION_ROUTINE ocr) { WSABUF buf; - buf.len = buffer.length; + buf.len = cast(int) buffer.length; buf.buf = cast(typeof(buf.buf)) buffer.ptr; uint flags = this.flags; @@ -3091,7 +3091,7 @@ class AsyncSendRequest : AsyncOperationRequest { version(Windows) { auto opCall(OVERLAPPED* overlapped, LPOVERLAPPED_COMPLETION_ROUTINE ocr) { WSABUF buf; - buf.len = buffer.length; + buf.len = cast(int) buffer.length; buf.buf = cast(typeof(buf.buf)) buffer.ptr; if(address is null) @@ -3803,7 +3803,7 @@ final class AsyncWriteRequest : AsyncOperationRequest { auto opCall(OVERLAPPED* overlapped, LPOVERLAPPED_COMPLETION_ROUTINE ocr) { overlapped.Offset = (cast(ulong) offset) & 0xffff_ffff; overlapped.OffsetHigh = ((cast(ulong) offset) >> 32) & 0xffff_ffff; - return WriteFileEx(file.handle, buffer.ptr, buffer.length, overlapped, ocr); + return WriteFileEx(file.handle, buffer.ptr, cast(int) buffer.length, overlapped, ocr); } } else { auto opCall() { @@ -3857,7 +3857,7 @@ final class AsyncReadRequest : AsyncOperationRequest { auto opCall(OVERLAPPED* overlapped, LPOVERLAPPED_COMPLETION_ROUTINE ocr) { overlapped.Offset = (cast(ulong) offset) & 0xffff_ffff; overlapped.OffsetHigh = ((cast(ulong) offset) >> 32) & 0xffff_ffff; - return ReadFileEx(file.handle, buffer.ptr, buffer.length, overlapped, ocr); + return ReadFileEx(file.handle, buffer.ptr, cast(int) buffer.length, overlapped, ocr); } } else { auto opCall() {