From 4515b78c9af8d231a51e3dd85e1ef47931e1d789 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 14 Sep 2023 20:58:37 -0400 Subject: [PATCH] fix some duplicate symbol complaints out of ldc on windows --- cgi.d | 10 ++++++++-- core.d | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/cgi.d b/cgi.d index 0497eb2..dfcabdd 100644 --- a/cgi.d +++ b/cgi.d @@ -4758,6 +4758,11 @@ extern(Windows) private { alias GROUP=uint; alias LPWSAPROTOCOL_INFOW = void*; SOCKET WSASocketW(int af, int type, int protocol, LPWSAPROTOCOL_INFOW lpProtocolInfo, GROUP g, DWORD dwFlags); + alias WSASend = arsd.core.WSASend; + alias WSARecv = arsd.core.WSARecv; + alias WSABUF = arsd.core.WSABUF; + + /+ int WSASend(SOCKET s, LPWSABUF lpBuffers, DWORD dwBufferCount, LPDWORD lpNumberOfBytesSent, DWORD dwFlags, LPWSAOVERLAPPED lpOverlapped, LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); int WSARecv(SOCKET s, LPWSABUF lpBuffers, DWORD dwBufferCount, LPDWORD lpNumberOfBytesRecvd, LPDWORD lpFlags, LPWSAOVERLAPPED lpOverlapped, LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); @@ -4765,6 +4770,7 @@ extern(Windows) private { ULONG len; CHAR *buf; } + +/ alias LPWSABUF = WSABUF*; alias WSAOVERLAPPED = OVERLAPPED; @@ -4917,7 +4923,7 @@ private class PseudoblockingOverlappedSocket : Socket { override ptrdiff_t send(scope const(void)[] buf, SocketFlags flags) @trusted { overlapped = overlapped.init; buffer[0].len = cast(DWORD) buf.length; - buffer[0].buf = cast(CHAR*) buf.ptr; + buffer[0].buf = cast(ubyte*) buf.ptr; fiber.setPostYield( () { if(!WSASend(handle, buffer.ptr, cast(DWORD) buffer.length, null, 0, &overlapped, null)) { if(GetLastError() != 997) { @@ -4932,7 +4938,7 @@ private class PseudoblockingOverlappedSocket : Socket { override ptrdiff_t receive(scope void[] buf, SocketFlags flags) @trusted { overlapped = overlapped.init; buffer[0].len = cast(DWORD) buf.length; - buffer[0].buf = cast(CHAR*) buf.ptr; + buffer[0].buf = cast(ubyte*) buf.ptr; DWORD flags2 = 0; diff --git a/core.d b/core.d index 49af24d..d925269 100644 --- a/core.d +++ b/core.d @@ -6648,7 +6648,7 @@ so the end result is you keep the last ones. it wouldn't report errors if multip +/ -private version(Windows) extern(Windows) { +package(arsd) version(Windows) extern(Windows) { BOOL CancelIoEx(HANDLE, LPOVERLAPPED); struct WSABUF {