mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
27 lines
960 B
C
27 lines
960 B
C
/** @file
|
|
Apple FileSystem BDS stage protocol to inform Apfs Loader, that Apple Filesystem
|
|
not supported
|
|
|
|
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_UNSUPPORTED_BDS_PROTOCOL_H
|
|
#define APFS_UNSUPPORTED_BDS_PROTOCOL_H
|
|
|
|
#define APFS_UNSUPPORTED_BDS_PROTOCOL_GUID \
|
|
{ 0xA196A7CA, 0x14C6, 0x11E7, \
|
|
{ 0xB9, 0x06, 0xB8, 0xE8, 0x56, 0x2C, 0xBA, 0xFA } }
|
|
|
|
extern EFI_GUID gApfsUnsupportedBdsProtocolGuid;
|
|
|
|
#endif // APFS_UNSUPPORTED_BDS_PROTOCOL_H
|