Reactos
1/*
2 * PROJECT: ReactOS HAL
3 * LICENSE: BSD - See COPYING.ARM in the top level directory
4 * FILE: hal/halarm/generic/sysinfo.c
5 * PURPOSE: HAL Information Routines
6 * PROGRAMMERS: ReactOS Portable Systems Group
7 */
8
9/* INCLUDES *******************************************************************/
10
11#include <hal.h>
12#define NDEBUG
13#include <debug.h>
14
15/* FUNCTIONS ******************************************************************/
16
17NTSTATUS
18NTAPI
19HaliQuerySystemInformation(IN HAL_QUERY_INFORMATION_CLASS InformationClass,
20 IN ULONG BufferSize,
21 IN OUT PVOID Buffer,
22 OUT PULONG ReturnedLength)
23{
24 UNIMPLEMENTED;
25 while (TRUE);
26 return STATUS_NOT_IMPLEMENTED;
27}
28
29NTSTATUS
30NTAPI
31HaliSetSystemInformation(IN HAL_SET_INFORMATION_CLASS InformationClass,
32 IN ULONG BufferSize,
33 IN OUT PVOID Buffer)
34{
35 UNIMPLEMENTED;
36 while (TRUE);
37 return STATUS_NOT_IMPLEMENTED;
38}
39
40/* EOF */