| author | |
| committer | |
| log | 254c79125b7bc664ef2bfa1e81dcd170ab49aef2 |
| tree | eed34a9e97b06d523ed76790a04d81310c739ff7 |
| parent | d99f0a2b8fc3c8617e95396d3c308fccf8beceb6 |
| signature | Commit is signed but in an unrecognized format. |
zig automatically passes functions as pointers2 files changed, 2 insertions(+), 2 deletions(-)
lib/std/os/windows.zig+1-1| ... | ... | @@ -708,7 +708,7 @@ pub fn WSAIoctl( |
| 708 | 708 | inBuffer: ?[]const u8, |
| 709 | 709 | outBuffer: []u8, |
| 710 | 710 | overlapped: ?*ws2_32.WSAOVERLAPPED, |
| 711 | completionRoutine: ?*ws2_32.WSAOVERLAPPED_COMPLETION_ROUTINE, | |
| 711 | completionRoutine: ?ws2_32.WSAOVERLAPPED_COMPLETION_ROUTINE, | |
| 712 | 712 | ) !DWORD { |
| 713 | 713 | var bytes: DWORD = undefined; |
| 714 | 714 | switch (ws2_32.WSAIoctl( |
lib/std/os/windows/ws2_32.zig+1-1| ... | ... | @@ -250,5 +250,5 @@ pub extern "ws2_32" stdcallcc fn WSAIoctl( |
| 250 | 250 | cbOutBuffer: DWORD, |
| 251 | 251 | lpcbBytesReturned: LPDWORD, |
| 252 | 252 | lpOverlapped: ?*WSAOVERLAPPED, |
| 253 | lpCompletionRoutine: ?*WSAOVERLAPPED_COMPLETION_ROUTINE, | |
| 253 | lpCompletionRoutine: ?WSAOVERLAPPED_COMPLETION_ROUTINE, | |
| 254 | 254 | ) c_int; |