Add stub for HalAllocateCrashDumpRegisters
Modified: trunk/reactos/hal/hal/hal.c
Modified: trunk/reactos/hal/hal/hal.def
Modified: trunk/reactos/hal/halx86/generic/misc.c

Modified: trunk/reactos/hal/hal/hal.c
--- trunk/reactos/hal/hal/hal.c	2005-11-26 08:19:38 UTC (rev 19615)
+++ trunk/reactos/hal/hal/hal.c	2005-11-26 08:21:42 UTC (rev 19616)
@@ -126,6 +126,16 @@
 }
 
 
+VOID
+NTAPI
+HalAllocateCrashDumpRegisters(
+  ULONG Unknown1,
+  ULONG Unknown2)
+{
+  UNIMPLEMENTED;
+}
+
+
 NTSTATUS
 NTAPI
 HalAssignSlotResources(

Modified: trunk/reactos/hal/hal/hal.def
--- trunk/reactos/hal/hal/hal.def	2005-11-26 08:19:38 UTC (rev 19615)
+++ trunk/reactos/hal/hal/hal.def	2005-11-26 08:21:42 UTC (rev 19616)
@@ -11,7 +11,7 @@
 HalAllProcessorsStarted@0
 HalAllocateAdapterChannel@16
 HalAllocateCommonBuffer@16
-;HalAllocateCrashDumpRegisters@8
+HalAllocateCrashDumpRegisters@8
 HalAssignSlotResources@32
 HalBeginSystemInterrupt@12
 HalCalibratePerformanceCounter@4

Modified: trunk/reactos/hal/halx86/generic/misc.c
--- trunk/reactos/hal/halx86/generic/misc.c	2005-11-26 08:19:38 UTC (rev 19615)
+++ trunk/reactos/hal/halx86/generic/misc.c	2005-11-26 08:21:42 UTC (rev 19616)
@@ -16,6 +16,17 @@
 
 /* FUNCTIONS ****************************************************************/
 
+
+VOID
+NTAPI
+HalAllocateCrashDumpRegisters(
+  ULONG Unknown1,
+  ULONG Unknown2)
+{
+  UNIMPLEMENTED;
+}
+
+
 VOID STDCALL
 HalHandleNMI(ULONG Unused)
 {