Minor changes.
[reactos.git] / reactos / lib / kernel32 / file / pipe.c
1 /* $Id: pipe.c,v 1.3 2000/06/03 14:47:32 ea Exp $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS system libraries
5 * FILE: lib/kernel32/file/create.c
6 * PURPOSE: Directory functions
7 * PROGRAMMER: Ariadne ( ariadne@xs4all.nl)
8 * UPDATE HISTORY:
9 */
10
11 /* INCLUDES *****************************************************************/
12
13 #include <ddk/ntddk.h>
14 #include <windows.h>
15 #include <wchar.h>
16 #include <string.h>
17
18 #include <kernel32/kernel32.h>
19
20 /* FUNCTIONS ****************************************************************/
21
22 BOOL STDCALL CreatePipe(PHANDLE hReadPipe,
23 PHANDLE hWritePipe,
24 LPSECURITY_ATTRIBUTES lpPipeAttributes,
25 DWORD nSize)
26 {
27 DPRINT("CreatePipe is unimplemented\n");
28 return(FALSE);
29 }
30
31 /* EOF */