[CONSRV]
[reactos.git] / win32ss / user / winsrv / consrv / subsysreg.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS Console Server DLL
4 * FILE: win32ss/user/winsrv/consrv/subsysreg.c
5 * PURPOSE: Registration APIs for VDM, OS2 and IME subsystems
6 * PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
7 */
8
9 /* INCLUDES *******************************************************************/
10
11 #include "consrv.h"
12
13 #define NDEBUG
14 #include <debug.h>
15
16 /* PUBLIC SERVER APIS *********************************************************/
17
18 /*
19 * VDM Subsystem
20 */
21
22 CSR_API(SrvRegisterConsoleVDM)
23 {
24 DPRINT1("%s not yet implemented\n", __FUNCTION__);
25 return STATUS_NOT_IMPLEMENTED;
26 }
27
28 CSR_API(SrvVDMConsoleOperation)
29 {
30 DPRINT1("%s not yet implemented\n", __FUNCTION__);
31 return STATUS_NOT_IMPLEMENTED;
32 }
33
34
35 /*
36 * OS/2 Subsystem
37 */
38
39 CSR_API(SrvRegisterConsoleOS2)
40 {
41 DPRINT1("%s not yet implemented\n", __FUNCTION__);
42 return STATUS_NOT_IMPLEMENTED;
43 }
44
45 CSR_API(SrvSetConsoleOS2OemFormat)
46 {
47 DPRINT1("%s not yet implemented\n", __FUNCTION__);
48 return STATUS_NOT_IMPLEMENTED;
49 }
50
51
52 /*
53 * IME Subsystem
54 */
55
56 CSR_API(SrvRegisterConsoleIME)
57 {
58 DPRINT1("%s not yet implemented\n", __FUNCTION__);
59 return STATUS_NOT_IMPLEMENTED;
60 }
61
62 CSR_API(SrvUnregisterConsoleIME)
63 {
64 DPRINT1("%s not yet implemented\n", __FUNCTION__);
65 return STATUS_NOT_IMPLEMENTED;
66 }
67
68 /* EOF */