能给我具体解释一下这个函数吗?

解决方案 »

  1.   

    重叠模型 
    用于因为读写操作未能完成返回ERROR_IO_PENDING的时候
    得到失败的详细的信息
      

  2.   

    BOOL GetOverlappedResult(
      HANDLE hFile,                       // handle to file, pipe, or comm device
      LPOVERLAPPED lpOverlapped,          // pointer to overlapped structure
      LPDWORD lpNumberOfBytesTransferred, // pointer to actual bytes count
      BOOL bWait                          // wait flag
    );主要用于:异步操作。