Use free Windows DDK and compile with latest MinGW releases.
[reactos.git] / reactos / ntoskrnl / lpc / receive.c
1 /* $Id: receive.c,v 1.4 2002/09/07 15:12:58 chorns Exp $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: ntoskrnl/lpc/receive.c
6 * PURPOSE: Communication mechanism
7 * PROGRAMMER: David Welch (welch@cwcom.net)
8 * UPDATE HISTORY:
9 * Created 22/05/98
10 */
11
12 /* INCLUDES *****************************************************************/
13
14 #include <ntoskrnl.h>
15
16 #define NDEBUG
17 #include <internal/debug.h>
18
19
20 /* FUNCTIONS *****************************************************************/
21
22 /**********************************************************************
23 * NAME SYSTEM
24 *
25 * DESCRIPTION
26 *
27 * ARGUMENTS
28 *
29 * RETURN VALUE
30 *
31 */
32 NTSTATUS STDCALL
33 NtReadRequestData (HANDLE PortHandle,
34 PLPC_MESSAGE Message,
35 ULONG Index,
36 PVOID Buffer,
37 ULONG BufferLength,
38 PULONG Returnlength)
39 {
40 UNIMPLEMENTED;
41 }
42
43
44 /* EOF */