Rename LOADER_MEMORY_MAPPING structure to more meaningful LOADER_MEMORY_DESCRIPTOR
All checks were successful
Builds / ExectOS (i686) (push) Successful in 2m8s
Builds / ExectOS (amd64) (push) Successful in 2m11s

This commit is contained in:
2024-05-23 19:00:50 +02:00
parent 143803aad9
commit 5221db2e63
7 changed files with 17 additions and 17 deletions

View File

@@ -93,13 +93,13 @@ typedef struct _LOADER_INFORMATION_BLOCK
} LOADER_INFORMATION_BLOCK, *PLOADER_INFORMATION_BLOCK;
/* Boot Loader memory mapping information */
typedef struct _LOADER_MEMORY_MAPPING
typedef struct _LOADER_MEMORY_DESCRIPTOR
{
LIST_ENTRY ListEntry;
LOADER_MEMORY_TYPE MemoryType;
ULONG BasePage;
ULONG PageCount;
} LOADER_MEMORY_MAPPING, *PLOADER_MEMORY_MAPPING;
} LOADER_MEMORY_DESCRIPTOR, *PLOADER_MEMORY_DESCRIPTOR;
/* Loader provided information needed by the kernel to initialize */
typedef struct _KERNEL_INITIALIZATION_BLOCK