mirror of https://github.com/acidanthera/audk.git
Move definition of EFI_PARTITION_ENTRY_STATUS from IndustryStandard in MDE Package to implementation of PartitionDxe module.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6156 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
4135253bde
commit
4f06d35a0f
|
@ -85,6 +85,15 @@ extern EFI_COMPONENT_NAME2_PROTOCOL gPartitionComponentName2;
|
||||||
(((UINT8 *) a)[2] << 16) | \
|
(((UINT8 *) a)[2] << 16) | \
|
||||||
(((UINT8 *) a)[3] << 24) )
|
(((UINT8 *) a)[3] << 24) )
|
||||||
|
|
||||||
|
|
||||||
|
//
|
||||||
|
// GPT Partition Entry Status
|
||||||
|
//
|
||||||
|
typedef struct {
|
||||||
|
BOOLEAN OutOfRange;
|
||||||
|
BOOLEAN Overlap;
|
||||||
|
} EFI_PARTITION_ENTRY_STATUS;
|
||||||
|
|
||||||
//
|
//
|
||||||
// Function Prototypes
|
// Function Prototypes
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue