+ntoskrnl/se/sid.c
[reactos.git] / 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
28 STDCALL
29 NtCreateChannel(VOID)
30 {
31         return STATUS_NOT_IMPLEMENTED;
32 }
33
34
35 NTSTATUS
36 STDCALL
37 NtListenChannel(VOID)
38 {
39         return STATUS_NOT_IMPLEMENTED;
40 }
41
42 NTSTATUS
43 STDCALL
44 NtOpenChannel(VOID)
45 {
46         return STATUS_NOT_IMPLEMENTED;
47 }
48
49
50 NTSTATUS
51 STDCALL
52 NtReplyWaitSendChannel(VOID)
53 {
54         return STATUS_NOT_IMPLEMENTED;
55 }
56
57
58 NTSTATUS
59 STDCALL
60 NtSendWaitReplyChannel(VOID)
61 {
62         return STATUS_NOT_IMPLEMENTED;
63 }
64
65
66 NTSTATUS
67 STDCALL
68 NtSetContextChannel(VOID)
69 {
70         return STATUS_NOT_IMPLEMENTED;
71 }
72
73 /* EOF */