"Kai Blin" kai.blin@gmail.com wrote:
- HANDLE hEvent = INVALID_HANDLE_VALUE;
- WSAEVENT event_array[1];
Is that change only to avoid passing &hEvent to WSAWaitForMultipleEvents?
Nope. WSAWaitForMultipleEvents expects an array of WSAEVENTs. So this seemed like the cleaner approach to do this.
That's exactly what I pointed out above. In C both ways is an equivalent.