Add ReactOS version at the start of the debug log

svn path=/trunk/; revision=15481
This commit is contained in:
Hervé Poussineau 2005-05-23 20:31:53 +00:00
parent 4ad1699bf6
commit d3881cf0ae

View 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);
}