source: trunk/src/kernel32/old/npipe.cpp@ 1036

Last change on this file since 1036 was 955, checked in by sandervl, 26 years ago

Backup copy of old kernel32

File size: 2.2 KB
Line 
1/* $Id: npipe.cpp,v 1.1 1999-09-15 23:32:59 sandervl Exp $ */
2
3/*
4 *
5 * Project Odin Software License can be found in LICENSE.TXT
6 *
7 */
8/*
9 * Win32 Named pipes API stub functions
10 *
11 * Copyright 1998 Sander van Leeuwen
12 *
13 */
14#include <os2win.h>
15
16//TODO: Not done!!
17
18//******************************************************************************
19//******************************************************************************
20BOOL WIN32API PeekNamedPipe(HANDLE hPipe, LPVOID lpvBuffer, DWORD cbBuffer,
21 LPDWORD lpcbRead, LPDWORD lpcbAvail, LPDWORD lpcbMessage)
22{
23 dprintf(("PeekNamedPipe Not Implemented!\n"));
24 return(FALSE);
25}
26//******************************************************************************
27//LPSECURITY_ATTRIBUTES lpsa; /* address of security attributes */
28//******************************************************************************
29BOOL WIN32API CreatePipe(PHANDLE phRead, PHANDLE phWrite, LPSECURITY_ATTRIBUTES lpsa, DWORD cbPipe)
30{
31 dprintf(("CreatePipe Not Implemented!\n"));
32 return(FALSE);
33}
34//******************************************************************************
35//******************************************************************************
36HANDLE WIN32API CreateNamedPipeA(LPCTSTR lpName, DWORD dwOpenMode, DWORD dwPipeMode,
37 DWORD nMaxInstances, DWORD nOutBufferSize,
38 DWORD nInBufferSize, DWORD nDefaultTimeOut,
39 void *lpSecurityAttributes)
40{
41 dprintf(("CreateNamedPipe Not Implemented!\n"));
42 return(0);
43}
44//******************************************************************************
45//******************************************************************************
46HANDLE WIN32API CreateNamedPipeW(LPCWSTR lpName, DWORD dwOpenMode, DWORD dwPipeMode,
47 DWORD nMaxInstances, DWORD nOutBufferSize,
48 DWORD nInBufferSize, DWORD nDefaultTimeOut,
49 void *lpSecurityAttributes)
50{
51 dprintf(("CreateNamedPipe Not Implemented!\n"));
52 return(0);
53}
54//******************************************************************************
55//******************************************************************************
Note: See TracBrowser for help on using the repository browser.