Is WSAGetLastError() just an alias for GetLastError()?

前端 未结 2 1943
日久生厌
日久生厌 2021-01-11 15:47

In my code, I have asynchronous I/O with I/O Completion Ports, and for the read/write completion callbacks, I get a HANDLE (that of course can be a socket, file

2条回答
  •  情书的邮戳
    2021-01-11 16:19

    It is just a wrapper to GetLastError if you reverse engineering ws2_32.dll, you'll find it.

提交回复
热议问题