add AMD64_LOADER_BLOCK, it currently contains a pointer to freeldrs debugprint function for early debugging

svn path=/branches/ros-amd64-bringup/; revision=43609
This commit is contained in:
Timo Kreuzer
2009-10-19 17:06:24 +00:00
parent 33020c2291
commit 1ef46e41d2
+6
View File
@@ -375,6 +375,11 @@ typedef struct _I386_LOADER_BLOCK
ULONG VirtualBias;
} I386_LOADER_BLOCK, *PI386_LOADER_BLOCK;
typedef struct _AMD64_LOADER_BLOCK
{
PVOID DbgPrint;
} AMD64_LOADER_BLOCK, *PAMD64_LOADER_BLOCK;
typedef struct _PPC_LOADER_BLOCK
{
PVOID BootInfo;
@@ -477,6 +482,7 @@ typedef struct _LOADER_PARAMETER_BLOCK
union
{
I386_LOADER_BLOCK I386;
AMD64_LOADER_BLOCK Amd64;
ALPHA_LOADER_BLOCK Alpha;
IA64_LOADER_BLOCK IA64;
PPC_LOADER_BLOCK PowerPC;