Fix usage of KdComPortInUse
[reactos.git] / reactos / hal / halx86 / generic / sysinfo.c
1 /*
2 * PROJECT: ReactOS HA:
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: hal/halx86/generic/sysinfo.c
5 * PURPOSE: HAL Information Routines
6 * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 #include <hal.h>
12 #define NDEBUG
13 #include <debug.h>
14
15 #ifdef __GNUC__
16 static PUCHAR realKdComPortInUse = 0;
17 PUCHAR *_KdComPortInUse = &realKdComPortInUse;
18 #else
19 PUCHAR _KdComPortInUse = 0;
20 #endif
21
22 /* FUNCTIONS *****************************************************************/
23
24 NTSTATUS
25 NTAPI
26 HaliQuerySystemInformation(IN HAL_QUERY_INFORMATION_CLASS InformationClass,
27 IN ULONG BufferSize,
28 IN OUT PVOID Buffer,
29 OUT PULONG ReturnedLength)
30 {
31 UNIMPLEMENTED;
32 return STATUS_NOT_IMPLEMENTED;
33 }
34
35 NTSTATUS
36 NTAPI
37 HaliSetSystemInformation(IN HAL_SET_INFORMATION_CLASS InformationClass,
38 IN ULONG BufferSize,
39 IN OUT PVOID Buffer)
40 {
41 UNIMPLEMENTED;
42 return STATUS_NOT_IMPLEMENTED;
43 }
44
45 /* EOF */