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/hmmailslot.cpp

    r7549 r7550  
    1 /* $Id: hmmailslot.cpp,v 1.6 2001-12-05 14:16:01 sandervl Exp $
     1/* $Id: hmmailslot.cpp,v 1.7 2001-12-05 18:06:01 sandervl Exp $
    22 *
    33 * Win32 mailslot APIs
     
    368368             lpNumberOfBytesRead, lpOverlapped));
    369369
     370    if(lpCompletionRoutine) {
     371        dprintf(("!WARNING!: lpCompletionRoutine not supported -> fall back to sync IO"));
     372    }
     373
    370374    if(lpNumberOfBytesRead)
    371375        *lpNumberOfBytesRead = 0;
     
    417421             lpNumberOfBytesWritten, lpOverlapped));
    418422
     423    if(lpCompletionRoutine) {
     424        dprintf(("!WARNING!: lpCompletionRoutine not supported -> fall back to sync IO"));
     425    }
     426
    419427    if(lpNumberOfBytesWritten)
    420428        *lpNumberOfBytesWritten = 0;
Note: See TracChangeset for help on using the changeset viewer.