- Create KD branch. All debugging support is removed in this branch (no symbols,...
[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 ULONG KdComPortInUse = 0;
16
17 /* FUNCTIONS *****************************************************************/
18
19 NTSTATUS
20 NTAPI
21 HaliQuerySystemInformation(IN HAL_QUERY_INFORMATION_CLASS InformationClass,
22 IN ULONG BufferSize,
23 IN OUT PVOID Buffer,
24 OUT PULONG ReturnedLength)
25 {
26 UNIMPLEMENTED;
27 return STATUS_NOT_IMPLEMENTED;
28 }
29
30 NTSTATUS
31 NTAPI
32 HaliSetSystemInformation(IN HAL_SET_INFORMATION_CLASS InformationClass,
33 IN ULONG BufferSize,
34 IN OUT PVOID Buffer)
35 {
36 UNIMPLEMENTED;
37 return STATUS_NOT_IMPLEMENTED;
38 }
39
40 /* EOF */