Move HL related global variables into separate file

This commit is contained in:
2023-02-13 23:41:24 +01:00
bovenliggende 2e790bd9b2
commit d8bc45e3bb
3 gewijzigde bestanden met toevoegingen van 15 en 4 verwijderingen

Bestand weergeven

@@ -2,16 +2,13 @@
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/ke/globals.c
* DESCRIPTION: XT kernel global variables
* DESCRIPTION: Architecture independent global variables related to KE subsystem
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#include <xtos.h>
/* FrameBuffer information */
HAL_FRAMEBUFFER_DATA HlpFrameBufferData;
/* Pointer to boot loader provided DbgPrint() routine */
VOID (*KeDbgPrint)(IN PWCHAR Format, IN ...) = NULL;