CapsuleOnFatUsbDisk.h 567 B

123456789101112131415161718192021222324
  1. /** @file
  2. Capsule on Fat Usb Disk GUID.
  3. Copyright (c) 2013-2015 Intel Corporation.
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. This is the contract between the recovery module and device recovery module
  6. in order to convey the name of a given recovery module type
  7. **/
  8. #ifndef _PEI_CAPSULE_ON_FAT_USB_DISK_H
  9. #define _PEI_CAPSULE_ON_FAT_USB_DISK_H
  10. #define PEI_CAPSULE_ON_FAT_USB_DISK_GUID \
  11. { \
  12. 0x0ffbce19, 0x324c, 0x4690, {0xa0, 0x09, 0x98, 0xc6, 0xae, 0x2e, 0xb1, 0x86 } \
  13. };
  14. extern EFI_GUID gPeiCapsuleOnFatUsbDiskGuid;
  15. #endif