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

    r9971 r9975  
    1 /* $Id: HandleManager.cpp,v 1.97 2003-04-02 11:03:30 sandervl Exp $ */
     1/* $Id: HandleManager.cpp,v 1.98 2003-04-02 12:58:27 sandervl Exp $ */
    22
    33/*
     
    18681868{
    18691869  int       iIndex;                           /* index into the handle table */
    1870   DWORD     dwResult;                /* result from the device handler's API */
     1870  BOOL      dwResult;                /* result from the device handler's API */
    18711871  PHMHANDLE pHMHandle;       /* pointer to the handle structure in the table */
    18721872
     
    19111911{
    19121912  int       iIndex;                           /* index into the handle table */
    1913   DWORD     dwResult;                /* result from the device handler's API */
     1913  BOOL      dwResult;                /* result from the device handler's API */
    19141914  PHMHANDLE pHMHandle;       /* pointer to the handle structure in the table */
    19151915
     
    19521952{
    19531953  int       iIndex;                           /* index into the handle table */
    1954   DWORD     dwResult;                /* result from the device handler's API */
     1954  BOOL      dwResult;                /* result from the device handler's API */
    19551955  PHMHANDLE pHMHandle;       /* pointer to the handle structure in the table */
    19561956
     
    19901990{
    19911991  int       iIndex;                           /* index into the handle table */
    1992   DWORD     dwResult;                /* result from the device handler's API */
     1992  BOOL      dwResult;                /* result from the device handler's API */
    19931993  PHMHANDLE pHMHandle;       /* pointer to the handle structure in the table */
    19941994
     
    46564656 * Author    : Przemyslaw Dobrowolski
    46574657 *****************************************************************************/
    4658 DWORD HMTransactNamedPipe(HANDLE hPipe,
    4659                           LPVOID       lpvWriteBuf,
    4660                           DWORD        cbWriteBuf,
    4661                           LPVOID       lpvReadBuf,
    4662                           DWORD        cbReadBuf,
    4663                           LPDWORD      lpcbRead,
    4664                           LPOVERLAPPED lpo)
    4665 {
    4666   int       iIndex;                           /* index into the handle table */
    4667   DWORD     lpResult;                /* result from the device handler's API */
     4658BOOL HMTransactNamedPipe(HANDLE hPipe,
     4659                         LPVOID       lpvWriteBuf,
     4660                         DWORD        cbWriteBuf,
     4661                         LPVOID       lpvReadBuf,
     4662                         DWORD        cbReadBuf,
     4663                         LPDWORD      lpcbRead,
     4664                         LPOVERLAPPED lpo)
     4665{
     4666  int       iIndex;                           /* index into the handle table */
     4667  BOOL      lpResult;                /* result from the device handler's API */
    46684668  PHMHANDLE pHMHandle;       /* pointer to the handle structure in the table */
    46694669
Note: See TracChangeset for help on using the changeset viewer.