From daf8b8783298749776c7d1b618a4d0fb05cb237e Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Sun, 10 Aug 2025 00:10:36 +0200 Subject: [PATCH] Expose GetBooleanParameter via loader protocol --- xtldr/protocol.c | 1 + 1 file changed, 1 insertion(+) diff --git a/xtldr/protocol.c b/xtldr/protocol.c index 4d61cea..6819131 100644 --- a/xtldr/protocol.c +++ b/xtldr/protocol.c @@ -872,6 +872,7 @@ BlpInstallXtLoaderProtocol() BlpLdrProtocol.Boot.InvokeProtocol = BlInvokeBootProtocol; BlpLdrProtocol.Boot.RegisterMenu = BlRegisterBootMenu; BlpLdrProtocol.Boot.RegisterProtocol = BlRegisterBootProtocol; + BlpLdrProtocol.BootUtil.GetBooleanParameter = BlGetBooleanParameter; BlpLdrProtocol.Config.GetBooleanValue = BlGetConfigBooleanValue; BlpLdrProtocol.Config.GetValue = BlGetConfigValue; BlpLdrProtocol.Console.ClearLine = BlClearConsoleLine;