Changeset 9975 for trunk/src/kernel32/npipe.cpp
- Timestamp:
- Apr 2, 2003, 2:58:58 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/npipe.cpp
r7854 r9975 1 /* $Id: npipe.cpp,v 1.1 0 2002-02-09 17:27:32sandervl Exp $ */1 /* $Id: npipe.cpp,v 1.11 2003-04-02 12:58:30 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Named pipes API … … 389 389 390 390 /***************************************************************************** 391 * Name : DWORDTransactNamedPipe391 * Name : BOOL TransactNamedPipe 392 392 * Purpose : The TransactNamedPipe function combines into a single network 393 393 * operation the functions that write a message to and read a … … 408 408 *****************************************************************************/ 409 409 410 DWORDWIN32API TransactNamedPipe(HANDLE hNamedPipe,411 412 413 414 415 416 410 BOOL WIN32API TransactNamedPipe(HANDLE hNamedPipe, 411 LPVOID lpvWriteBuf, 412 DWORD cbWriteBuf, 413 LPVOID lpvReadBuf, 414 DWORD cbReadBuf, 415 LPDWORD lpcbRead, 416 LPOVERLAPPED lpo) 417 417 { 418 418 return(HMTransactNamedPipe( hNamedPipe,
Note:
See TracChangeset
for help on using the changeset viewer.