Fix KeDbgPrint prototype to use PCWSTR
已通過所有檢查
Builds / ExectOS (amd64, debug) (push) Successful in 31s
Builds / ExectOS (i686, release) (push) Successful in 29s
Builds / ExectOS (amd64, release) (push) Successful in 33s
Builds / ExectOS (i686, debug) (push) Successful in 29s

此提交包含在:
2025-09-03 10:29:21 +02:00
父節點 d6999fad2f
當前提交 b2df65f5cc
共有 2 個檔案被更改,包括 2 行新增2 行删除

查看文件

@@ -34,7 +34,7 @@ EXTERN HAL_FRAMEBUFFER_DATA HlpFrameBufferData;
EXTERN ACPI_SYSTEM_INFO HlpSystemInfo;
/* Pointer to boot loader provided DbgPrint() routine */
EXTERN VOID (*KeDbgPrint)(IN PWCHAR Format, IN ...);
EXTERN VOID (*KeDbgPrint)(IN PCWSTR Format, IN ...);
/* Kernel initialization block passed by boot loader */
EXTERN PKERNEL_INITIALIZATION_BLOCK KeInitializationBlock;

查看文件

@@ -10,7 +10,7 @@
/* Pointer to boot loader provided DbgPrint() routine */
VOID (*KeDbgPrint)(IN PWCHAR Format, IN ...) = NULL;
VOID (*KeDbgPrint)(IN PCWSTR Format, IN ...) = NULL;
/* Kernel initialization block passed by boot loader */
PKERNEL_INITIALIZATION_BLOCK KeInitializationBlock;