GetOverlappedResult(3w)
NAME
GetOverlappedResult (KERNEL32.@)
SYNOPSIS
BOOL GetOverlappedResult ( HANDLE hFile, LPOVERLAPPED lpOverlapped, LPDWORD lpTransferred, BOOL bWait )
DESCRIPTION
Check the result of an Asynchronous data transfer from a file.
Parameters HANDLE hFile [In] handle of file to check on. LPOVERLAPPED
lpOverlapped [In/Out] pointer to overlapped. LPDWORD lpTransferred
[In/Out] number of bytes transferred. BOOL bWait [In] wait for the
transfer to complete ?.
RETURNS
TRUE on success FALSE on failure.
If successful (and relevant) lpTransferred will hold the number of
bytes transferred during the async operation.
IMPLEMENTATION
Defined in "winbase.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/kernel32/file.c".
- Debug channel "file".