Sync trunk.
[reactos.git] / hal / halx86 / amd64 / halinit.c
1 /*
2 * PROJECT: ReactOS HAL
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: hal/halx86/amd64/halinit.c
5 * PURPOSE: HAL Entrypoint and Initialization
6 * PROGRAMMERS:
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 #include <hal.h>
12 #define NDEBUG
13 #include <debug.h>
14
15 /* GLOBALS *******************************************************************/
16
17 /* PRIVATE FUNCTIONS *********************************************************/
18
19 /* FUNCTIONS *****************************************************************/
20
21 /*
22 * @implemented
23 */
24 BOOLEAN
25 NTAPI
26 HalInitSystem(IN ULONG BootPhase,
27 IN PLOADER_PARAMETER_BLOCK LoaderBlock)
28 {
29 UNIMPLEMENTED;
30 return FALSE;
31 }