source: trunk/src/kernel32/NPIPE.C@ 21

Last change on this file since 21 was 17, checked in by phaller, 26 years ago

Code cleanup #1 for build, mainly addresses linkage problems

File size: 2.2 KB
Line 
1/* $Id: NPIPE.C,v 1.2 1999-05-31 22:08:09 phaller 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
15#include <os2win.h>
16#include "misc.h"
17
18//TODO: Not done!!
19
20//******************************************************************************
21//******************************************************************************
22BOOL WIN32API PeekNamedPipe(HANDLE hPipe, LPVOID lpvBuffer, DWORD cbBuffer,
23 LPDWORD lpcbRead, LPDWORD lpcbAvail, LPDWORD lpcbMessage)
24{
25 dprintf(("PeekNamedPipe Not Implemented!\n"));
26 return(FALSE);
27}
28//******************************************************************************
29//LPSECURITY_ATTRIBUTES lpsa; /* address of security attributes */
30//******************************************************************************
31BOOL WIN32API CreatePipe(PHANDLE phRead, PHANDLE phWrite, LPSECURITY_ATTRIBUTES lpsa, DWORD cbPipe)
32{
33 dprintf(("CreatePipe Not Implemented!\n"));
34 return(FALSE);
35}
36//******************************************************************************
37//******************************************************************************
38HANDLE WIN32API CreateNamedPipeA(LPCTSTR lpName, DWORD dwOpenMode, DWORD dwPipeMode,
39 DWORD nMaxInstances, DWORD nOutBufferSize,
40 DWORD nInBufferSize, DWORD nDefaultTimeOut,
41 void *lpSecurityAttributes)
42{
43 dprintf(("CreateNamedPipe Not Implemented!\n"));
44 return(0);
45}
46//******************************************************************************
47//******************************************************************************
48HANDLE WIN32API CreateNamedPipeW(LPCWSTR lpName, DWORD dwOpenMode, DWORD dwPipeMode,
49 DWORD nMaxInstances, DWORD nOutBufferSize,
50 DWORD nInBufferSize, DWORD nDefaultTimeOut,
51 void *lpSecurityAttributes)
52{
53 dprintf(("CreateNamedPipe Not Implemented!\n"));
54 return(0);
55}
56//******************************************************************************
57//******************************************************************************
Note: See TracBrowser for help on using the repository browser.