Changeset 3768 for trunk/src/kernel32/npipe.cpp
- Timestamp:
- Jun 28, 2000, 11:05:57 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/npipe.cpp
r2803 r3768 1 /* $Id: npipe.cpp,v 1. 7 2000-02-16 14:25:43 sandervlExp $ */1 /* $Id: npipe.cpp,v 1.8 2000-06-28 21:05:56 phaller Exp $ */ 2 2 /* 3 3 * Win32 Named pipes API … … 37 37 //LPSECURITY_ATTRIBUTES lpsa; /* address of security attributes */ 38 38 //****************************************************************************** 39 BOOL WIN32API CreatePipe(PHANDLE phRead, PHANDLE phWrite, LPSECURITY_ATTRIBUTES lpsa, DWORD cbPipe) 40 { 41 dprintf(("CreatePipe Not Implemented!\n")); 42 return(FALSE); 43 } 39 ODINFUNCTION4(BOOL, CreatePipe, 40 PHANDLE, phRead, 41 PHANDLE, phWrite, 42 LPSECURITY_ATTRIBUTES,lpsa, 43 DWORD, cbPipe) 44 { 45 // @@@PH Note: HandleManager support is missing! 46 47 if(!OSLibDosCreatePipe(phRead, 48 phWrite, 49 lpsa, 50 cbPipe)) 51 return TRUE; 52 else 53 return(FALSE); 54 } 55 56 44 57 //****************************************************************************** 45 58 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.