Ignore:
Timestamp:
Apr 2, 2003, 2:58:58 PM (22 years ago)
Author:
sandervl
Message:

YD: Changes for header updates

File:
1 edited

Legend:

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

    r7854 r9975  
    1 /* $Id: npipe.cpp,v 1.10 2002-02-09 17:27:32 sandervl Exp $ */
     1/* $Id: npipe.cpp,v 1.11 2003-04-02 12:58:30 sandervl Exp $ */
    22/*
    33 * Win32 Named pipes API
     
    389389
    390390/*****************************************************************************
    391  * Name      : DWORD TransactNamedPipe
     391 * Name      : BOOL TransactNamedPipe
    392392 * Purpose   : The TransactNamedPipe function combines into a single network
    393393 *             operation the functions that write a message to and read a
     
    408408 *****************************************************************************/
    409409
    410 DWORD WIN32API TransactNamedPipe(HANDLE  hNamedPipe,
    411                                  LPVOID  lpvWriteBuf,
    412                                  DWORD   cbWriteBuf,
    413                                  LPVOID  lpvReadBuf,
    414                                  DWORD   cbReadBuf,
    415                                  LPDWORD lpcbRead,
    416                                  LPOVERLAPPED lpo)
     410BOOL WIN32API TransactNamedPipe(HANDLE  hNamedPipe,
     411                                LPVOID  lpvWriteBuf,
     412                                DWORD   cbWriteBuf,
     413                                LPVOID  lpvReadBuf,
     414                                DWORD   cbReadBuf,
     415                                LPDWORD lpcbRead,
     416                                LPOVERLAPPED lpo)
    417417{
    418418  return(HMTransactNamedPipe( hNamedPipe,
Note: See TracChangeset for help on using the changeset viewer.