diff options
Diffstat (limited to 'Private/FirmwareKit')
| -rw-r--r-- | Private/FirmwareKit/EFI/EFI.hxx | 12 | ||||
| -rw-r--r-- | Private/FirmwareKit/EPM.hxx | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/Private/FirmwareKit/EFI/EFI.hxx b/Private/FirmwareKit/EFI/EFI.hxx index 463d757b..7ac8d624 100644 --- a/Private/FirmwareKit/EFI/EFI.hxx +++ b/Private/FirmwareKit/EFI/EFI.hxx @@ -42,7 +42,7 @@ struct EfiFileProtocol; typedef UInt64 EfiStatusType; -/// @brief Core Handle Type +/// @brief Core Handle Kind /// This is like NT's Win32 HANDLE type. typedef struct EfiHandle { } *EfiHandlePtr; @@ -189,15 +189,15 @@ typedef enum EfiAllocateType { typedef struct EfiMemoryDescriptor { /// - /// Type of the memory region. - /// Type EFI_MEMORY_TYPE is defined in the + /// Kind of the memory region. + /// Kind EFI_MEMORY_TYPE is defined in the /// AllocatePages() function description. /// - UInt32 Type; + UInt32 Kind; /// /// Physical address of the first byte in the memory region. PhysicalStart /// must be aligned on a 4 KiB boundary, and must not be above - /// 0xfffffffffffff000. Type EFI_PHYSICAL_ADDRESS is defined in the + /// 0xfffffffffffff000. Kind EFI_PHYSICAL_ADDRESS is defined in the /// AllocatePages() function description /// UIntPtr PhysicalStart; @@ -403,7 +403,7 @@ typedef struct EfiLoadFileProtocol { } EfiLoadFileProtocol; typedef struct EfiDevicePathProtocol { - UInt8 Type; + UInt8 Kind; UInt8 SubType; UInt8 Length[2]; } EfiDevicePathProtocol; diff --git a/Private/FirmwareKit/EPM.hxx b/Private/FirmwareKit/EPM.hxx index 0746a050..2c68b40a 100644 --- a/Private/FirmwareKit/EPM.hxx +++ b/Private/FirmwareKit/EPM.hxx @@ -50,7 +50,7 @@ struct PACKED PartitionBlock { HCore::Int64 SectorEnd; HCore::Int64 SectorSz; HCore::Int64 SectorStart; - HCore::Int16 Type; + HCore::Int16 Kind; HCore::Int32 Version; HCore::Char Fs[kEPMFilesystemLength]; /* NewFS, HCFS... */ }; |
