win32pipe.GetOverlappedResult
int = GetOverlappedResult(hFile, overlapped
, bWait
)
Determines the result of the most recent call with an OVERLAPPED object.
Parameters
hFile : PyHANDLE
The handle to the pipe or fileoverlapped : PyOVERLAPPED
The overlapped object to check.bWait : int
Indicates if the function should wait for data to become available.Comments
The result is the number of bytes transferred. The overlapped object's attributes will be changed during this call.