mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
/** @file
|
|
Apple FileSystem EfiBootRecord container info.
|
|
|
|
Copyright (C) 2018, savvas. All rights reserved.<BR>
|
|
Copyright (C) 2018, Download-Fritz. All rights reserved.<BR>
|
|
This program and the accompanying materials are licensed and made available
|
|
under the terms and conditions of the BSD License which accompanies this
|
|
distribution. The full text of the license may be found at
|
|
http://opensource.org/licenses/bsd-license.php.
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
**/
|
|
|
|
#ifndef APFS_EFIBOOTRECORD_INFO_PROTOCOL_H
|
|
#define APFS_EFIBOOTRECORD_INFO_PROTOCOL_H
|
|
|
|
#define APFS_EFIBOOTRECORD_INFO_PROTOCOL_GUID \
|
|
{ 0x03B8D751, 0xA02F, 0x4FF8, \
|
|
{ 0x9B, 0x1A, 0x55, 0x24, 0xAF, 0xA3, 0x94, 0x5F } }
|
|
|
|
typedef struct _APFS_EFIBOOTRECORD_LOCATION_INFO {
|
|
//
|
|
// Handle of partition which contain EfiBootRecord section
|
|
//
|
|
EFI_HANDLE ControllerHandle;
|
|
//
|
|
// UUID of GPT container partition
|
|
//
|
|
EFI_GUID ContainerUuid;
|
|
} APFS_EFIBOOTRECORD_LOCATION_INFO;
|
|
|
|
extern EFI_GUID gApfsEfiBootRecordInfoProtocolGuid;
|
|
|
|
#endif // APFS_EFIBOOTRECORD_INFO_PROTOCOL_H
|