Ignore:
Timestamp:
Dec 5, 2001, 7:06:02 PM (24 years ago)
Author:
sandervl
Message:

overlapped io updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/hmparport.cpp

    r7549 r7550  
    1 /* $Id: hmparport.cpp,v 1.16 2001-12-05 14:16:04 sandervl Exp $ */
     1/* $Id: hmparport.cpp,v 1.17 2001-12-05 18:06:02 sandervl Exp $ */
    22
    33/*
     
    352352    dprintf(("Warning: lpOverlapped != NULL & !FILE_FLAG_OVERLAPPED; sync operation"));
    353353  }
     354  if(lpCompletionRoutine) {
     355      dprintf(("!WARNING!: lpCompletionRoutine not supported -> fall back to sync IO"));
     356  }
    354357
    355358  ret = OSLibDosWrite(pHMHandleData->hHMHandle, (LPVOID)lpBuffer, nNumberOfBytesToWrite,
     
    407410  if(!(pHMHandleData->dwFlags & FILE_FLAG_OVERLAPPED) && lpOverlapped) {
    408411    dprintf(("Warning: lpOverlapped != NULL & !FILE_FLAG_OVERLAPPED; sync operation"));
     412  }
     413  if(lpCompletionRoutine) {
     414      dprintf(("!WARNING!: lpCompletionRoutine not supported -> fall back to sync IO"));
    409415  }
    410416
Note: See TracChangeset for help on using the changeset viewer.