Update XTLDR API
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 28s
Builds / ExectOS (i686) (push) Successful in 25s

This commit is contained in:
Rafal Kupiec 2023-12-17 16:41:54 +01:00
parent a45b8c62db
commit ceee294df7
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
2 changed files with 2 additions and 2 deletions

View File

@ -144,7 +144,7 @@ typedef struct _XTBL_LOADER_PROTOCOL
} Memory; } Memory;
struct struct
{ {
PBL_OPEN_XT_PROTOCOL Open; PBL_OPEN_XT_PROTOCOL OpenProtocol;
} Protocol; } Protocol;
struct struct
{ {

View File

@ -108,7 +108,7 @@ BlpRegisterXtLoaderProtocol()
LdrProtocol.Memory.AllocatePool = BlMemoryAllocatePool; LdrProtocol.Memory.AllocatePool = BlMemoryAllocatePool;
LdrProtocol.Memory.FreePages = BlMemoryFreePages; LdrProtocol.Memory.FreePages = BlMemoryFreePages;
LdrProtocol.Memory.FreePool = BlMemoryFreePool; LdrProtocol.Memory.FreePool = BlMemoryFreePool;
LdrProtocol.Protocol.Open = BlOpenXtProtocol; LdrProtocol.Protocol.OpenProtocol = BlOpenXtProtocol;
LdrProtocol.Tui.DisplayErrorDialog = BlDisplayErrorDialog; LdrProtocol.Tui.DisplayErrorDialog = BlDisplayErrorDialog;
LdrProtocol.Tui.DisplayInfoDialog = BlDisplayInfoDialog; LdrProtocol.Tui.DisplayInfoDialog = BlDisplayInfoDialog;
LdrProtocol.Tui.DisplayProgressDialog = BlDisplayProgressDialog; LdrProtocol.Tui.DisplayProgressDialog = BlDisplayProgressDialog;