Unify wide string types across console and debug functions

此提交包含在:
2025-09-03 10:41:24 +02:00
父節點 b2df65f5cc
當前提交 9f5daafad9
共有 4 個檔案被更改,包括 16 行新增16 行删除

查看文件

@@ -51,16 +51,16 @@ BlCloseVolume(IN PEFI_HANDLE VolumeHandle);
XTCDECL
VOID
BlConsolePrint(IN PUSHORT Format,
BlConsolePrint(IN PCWSTR Format,
IN ...);
XTCDECL
VOID
BlConsoleWrite(IN PUSHORT String);
BlConsoleWrite(IN PCWSTR String);
XTCDECL
VOID
BlDebugPrint(IN PUSHORT Format,
BlDebugPrint(IN PCWSTR Format,
IN ...);
XTCDECL
@@ -418,11 +418,11 @@ BlpActivateSerialIOController();
XTCDECL
XTSTATUS
BlpConsolePutChar(IN USHORT Character);
BlpConsolePutChar(IN WCHAR Character);
XTCDECL
XTSTATUS
BlpDebugPutChar(IN USHORT Character);
BlpDebugPutChar(IN WCHAR Character);
XTCDECL
VOID