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