Store module dependencies in a linked list
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 36s
Builds / ExectOS (i686) (push) Successful in 27s

This commit is contained in:
2023-12-30 13:36:17 +01:00
parent effde90ece
commit 1d61b2fb6a
4 changed files with 30 additions and 13 deletions

View File

@@ -31,5 +31,5 @@ EFI_STATUS
XtLdrModuleMain(IN EFI_HANDLE ImageHandle,
IN PEFI_SYSTEM_TABLE SystemTable)
{
return STATUS_EFI_SUCCESS;
return STATUS_EFI_SUCCESS;
}

View File

@@ -8,9 +8,6 @@
#include <xtblapi.h>
#define XTBL_MODDEP SEGMENT(".moddeps") CONST WCHAR XtBlpDeps[][8]
//XTBL_MODDEP = {L""};
/**
* This routine is the entry point of the XT EFI boot loader module.
@@ -30,5 +27,5 @@ EFI_STATUS
XtLdrModuleMain(IN EFI_HANDLE ImageHandle,
IN PEFI_SYSTEM_TABLE SystemTable)
{
return STATUS_EFI_SUCCESS;
return STATUS_EFI_SUCCESS;
}