Add ReactOS version at the start of the debug log
authorHervé Poussineau <hpoussin@reactos.org>
Mon, 23 May 2005 20:31:53 +0000 (20:31 +0000)
committerHervé Poussineau <hpoussin@reactos.org>
Mon, 23 May 2005 20:31:53 +0000 (20:31 +0000)
svn path=/trunk/; revision=15481

reactos/ntoskrnl/ke/main.c

index c4299a1..cb2dba1 100644 (file)
@@ -288,6 +288,10 @@ _main(ULONG MultiBootMagic,
     /* Initialize HAL */
     HalInitSystem (0, (PLOADER_PARAMETER_BLOCK)&KeLoaderBlock);
 
+    /* Display separator + ReactOS version at start of the debug log */
+    DPRINT1("---------------------------------------------------------------\n");
+    DPRINT1("ReactOS "KERNEL_VERSION_STR" (Build "KERNEL_VERSION_BUILD_STR")\n");
+
     /* Do general System Startup */
     KiSystemStartup(1);
 }