06d47d21532b9b51ee76c81e3d21a762fa8c5723
[reactos.git] / reactos / ntoskrnl / nt / channel.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: ntoskrnl/nt/channel.c
5 * PURPOSE: Channels (??)
6 * PROGRAMMER: David Welch (welch@mcmail.com)
7 * UPDATE HISTORY:
8 * Created 22/05/98
9 */
10
11 /*
12 * NOTES:
13 *
14 * An article on System Internals (http://www.sysinternals.com) reports
15 * that these functions are unimplemented on nt version 3-5.
16 *
17 */
18
19 /* INCLUDES *****************************************************************/
20
21 #include <ddk/ntddk.h>
22
23 #include <internal/debug.h>
24
25 /* FUNCTIONS *****************************************************************/
26
27 NTSTATUS STDCALL NtCreateChannel(VOID)
28 {
29 UNIMPLEMENTED;
30 }
31
32 NTSTATUS STDCALL NtListenChannel(VOID)
33 {
34 UNIMPLEMENTED;
35 }
36
37 NTSTATUS STDCALL NtOpenChannel(VOID)
38 {
39 UNIMPLEMENTED;
40 }
41
42 NTSTATUS STDCALL NtReplyWaitSendChannel(VOID)
43 {
44 UNIMPLEMENTED;
45 }
46
47 NTSTATUS STDCALL NtSendWaitReplyChannel(VOID)
48 {
49 UNIMPLEMENTED;
50 }
51
52 NTSTATUS STDCALL NtSetContextChannel(VOID)
53 {
54 UNIMPLEMENTED;
55 }