CancelIoEx method

int CancelIoEx(
  1. Pointer<Void> hFile,
  2. Pointer<OVERLAPPED> lpOverlapped
)

Implementation

int CancelIoEx(
  ffi.Pointer<ffi.Void> hFile,
  ffi.Pointer<OVERLAPPED> lpOverlapped,
) {
  return _CancelIoEx(
    hFile,
    lpOverlapped,
  );
}