Changeset 9975 for trunk/src/kernel32/HandleManager.cpp
- Timestamp:
- Apr 2, 2003, 2:58:58 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/HandleManager.cpp
r9971 r9975 1 /* $Id: HandleManager.cpp,v 1.9 7 2003-04-02 11:03:30sandervl Exp $ */1 /* $Id: HandleManager.cpp,v 1.98 2003-04-02 12:58:27 sandervl Exp $ */ 2 2 3 3 /* … … 1868 1868 { 1869 1869 int iIndex; /* index into the handle table */ 1870 DWORDdwResult; /* result from the device handler's API */1870 BOOL dwResult; /* result from the device handler's API */ 1871 1871 PHMHANDLE pHMHandle; /* pointer to the handle structure in the table */ 1872 1872 … … 1911 1911 { 1912 1912 int iIndex; /* index into the handle table */ 1913 DWORDdwResult; /* result from the device handler's API */1913 BOOL dwResult; /* result from the device handler's API */ 1914 1914 PHMHANDLE pHMHandle; /* pointer to the handle structure in the table */ 1915 1915 … … 1952 1952 { 1953 1953 int iIndex; /* index into the handle table */ 1954 DWORDdwResult; /* result from the device handler's API */1954 BOOL dwResult; /* result from the device handler's API */ 1955 1955 PHMHANDLE pHMHandle; /* pointer to the handle structure in the table */ 1956 1956 … … 1990 1990 { 1991 1991 int iIndex; /* index into the handle table */ 1992 DWORDdwResult; /* result from the device handler's API */1992 BOOL dwResult; /* result from the device handler's API */ 1993 1993 PHMHANDLE pHMHandle; /* pointer to the handle structure in the table */ 1994 1994 … … 4656 4656 * Author : Przemyslaw Dobrowolski 4657 4657 *****************************************************************************/ 4658 DWORDHMTransactNamedPipe(HANDLE hPipe,4659 4660 4661 4662 4663 4664 4665 { 4666 int iIndex; /* index into the handle table */ 4667 DWORDlpResult; /* result from the device handler's API */4658 BOOL 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 */ 4668 4668 PHMHANDLE pHMHandle; /* pointer to the handle structure in the table */ 4669 4669
Note:
See TracChangeset
for help on using the changeset viewer.