Experimental 64-bit host support

This commit is contained in:
2025-11-04 22:07:51 -07:00
parent 463686d01a
commit 3dd9fb77ff
64 changed files with 1993 additions and 844 deletions

View File

@@ -355,8 +355,8 @@ BOOL WINAPI CreatePipe(PHANDLE hReadPipe, PHANDLE hWritePipe, LPSECURITY_ATTRIBU
setLastError(ERROR_INVALID_PARAMETER);
return FALSE;
}
*hReadPipe = nullptr;
*hWritePipe = nullptr;
*hReadPipe = NO_HANDLE;
*hWritePipe = NO_HANDLE;
int pipeFds[2];
if (pipe(pipeFds) != 0) {