Changeset 7929 for trunk/src


Ignore:
Timestamp:
Feb 15, 2002, 9:15:55 PM (24 years ago)
Author:
sandervl
Message:

pipe updates

Location:
trunk/src/kernel32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/KERNEL32.CPP

    r7858 r7929  
    1 /* $Id: KERNEL32.CPP,v 1.71 2002-02-10 13:12:50 sandervl Exp $ */
     1/* $Id: KERNEL32.CPP,v 1.72 2002-02-15 20:15:54 sandervl Exp $ */
    22
    33/*
     
    166166{
    167167    if(dwError != 0) {
    168         dprintf2(("KERNEL32:  SetLastError to %d\n", dwError));
     168        dprintf(("KERNEL32:  SetLastError to %d\n", dwError));
    169169    }
    170170    O32_SetLastError(dwError);
  • trunk/src/kernel32/hmnpipe.cpp

    r7927 r7929  
    1 /* $Id: hmnpipe.cpp,v 1.8 2002-02-15 19:14:51 sandervl Exp $ */
     1/* $Id: hmnpipe.cpp,v 1.9 2002-02-15 20:15:55 sandervl Exp $ */
    22/*
    33 * Project Odin Software License can be found in LICENSE.TXT
     
    182182  dprintf(("KERNEL32: HMDeviceNamedPipeClass::CloseHandle(%08x)", pHMHandleData->hHMHandle));
    183183
     184  OSLibDosDisconnectNamedPipe(pHMHandleData->hHMHandle);
    184185  return OSLibDosClose(pHMHandleData->hHMHandle);
    185186}
     
    372373  }
    373374
    374   bRC = HMDeviceFileClass::WriteFile(pHMHandleData,
    375                                      lpBuffer,
    376                                      nNumberOfBytesToRead,
    377                                      lpNumberOfBytesRead,
    378                                      lpOverlapped, lpCompletionRoutine);
    379 
    380   dprintf(("KERNEL32: HMDeviceNamedPipeClass::ReadFile returned %08xh; bytes written %d",
     375  bRC = HMDeviceFileClass::ReadFile(pHMHandleData,
     376                                    lpBuffer,
     377                                    nNumberOfBytesToRead,
     378                                    lpNumberOfBytesRead,
     379                                    lpOverlapped, lpCompletionRoutine);
     380
     381  dprintf(("KERNEL32: HMDeviceNamedPipeClass::ReadFile returned %08xh; bytes read %d",
    381382           bRC, *lpNumberOfBytesRead));
    382383
Note: See TracChangeset for help on using the changeset viewer.