32 bit compat

This commit is contained in:
Adam D. Ruppe 2023-04-16 08:52:29 -04:00
parent 2ae4ac1b25
commit 97eb7e43f9
1 changed files with 4 additions and 4 deletions

8
core.d
View File

@ -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() {