XTLDR Rewrite #7

Merged
belliash merged 184 commits from xtldr_rewrite into master 2024-01-09 18:51:04 +01:00
Showing only changes of commit 26cee38e31 - Show all commits

View File

@ -12,8 +12,31 @@
#include <xttarget.h>
#include <xttypes.h>
/* XT forward references */
#include <xtstruct.h>
/* Architecture-specific XT forward references */
#include ARCH_HEADER(xtstruct.h)
/* Architecture-independent XT API */
#include <xtbase.h>
#include <xtfw.h>
#include <xtimage.h>
#include <xtuefi.h>
#include <xtdebug.h>
#include <xtguid.h>
/* Architecture independent XT kernel data types */
#include <hltypes.h>
#include <rtltypes.h>
/* Architecture dependent XT kernel data types */
#include ARCH_HEADER(artypes.h)
#include ARCH_HEADER(hltypes.h)
/* XT Kernel runtime routines */
#include <rtlfuncs.h>
/* Architecture specific XT kernel routines */
#include ARCH_HEADER(arfuncs.h)
#include ARCH_HEADER(hlfuncs.h)