Ignore:
Timestamp:
Jan 2, 2000, 11:51:58 PM (26 years ago)
Author:
sandervl
Message:

PB: Started with named pipe api implementation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/oslibdos.h

    r1924 r2301  
    1 /* $Id: oslibdos.h,v 1.9 1999-12-01 18:40:48 sandervl Exp $ */
     1/* $Id: oslibdos.h,v 1.10 2000-01-02 22:51:12 sandervl Exp $ */
    22
    33/*
     
    101101BOOL OSLibDosQueryProcTimes(DWORD procid, ULONG *kerneltime, ULONG *usertime);
    102102
     103BOOL OSLibDosTransactNamedPipe( DWORD  hNamedPipe,
     104                                LPVOID lpInBuffer,
     105                                DWORD nInBufferSize,
     106                                LPVOID lpOutBuffer,
     107                                DWORD nOutBufferSize,
     108                                LPOVERLAPPED lpOverlapped );
     109BOOL OSLibDosCallNamedPipe( LPCTSTR lpNamedPipeName,
     110                         LPVOID  lpInBuffer,
     111                         DWORD   nInBufferSize,
     112                         LPVOID  lpOutBuffer,
     113                         DWORD   nOutBufferSize,
     114                         LPDWORD lpBytesRead,
     115                         DWORD   nTimeOut );
     116
     117BOOL OSLibDosConnectNamedPipe(DWORD hNamedPipe, LPOVERLAPPED lpOverlapped);
     118
     119DWORD OSLibDosCreateNamedPipe(LPCTSTR lpName,
     120                              DWORD   dwOpenMode,
     121                              DWORD   dwPipeMode,
     122                              DWORD   nMaxInstances,
     123                              DWORD   nOutBufferSize,
     124                              DWORD   nInBufferSize,
     125                              DWORD   nDefaultTimeOut,
     126                              void* lpSecurityAttributes);
     127
     128
    103129#endif
Note: See TracChangeset for help on using the changeset viewer.