1 /** @file 2 Capsule on Fat Floppy Disk GUID. 3 4 Copyright (c) 2013-2015 Intel Corporation. 5 6 This program and the accompanying materials 7 are licensed and made available under the terms and conditions of the BSD License 8 which accompanies this distribution. The full text of the license may be found at 9 http://opensource.org/licenses/bsd-license.php 10 11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13 14 This is the contract between the recovery module and device recovery module 15 in order to convey the name of a given recovery module type 16 17 **/ 18 19 #ifndef _CAPSULE_ON_FAT_FLOPPY_DISK_H 20 #define _CAPSULE_ON_FAT_FLOPPY_DISK_H 21 22 #define PEI_CAPSULE_ON_FAT_FLOPPY_DISK_GUID \ 23 { \ 24 0x2e3d2e75, 0x9b2e, 0x412d, {0xb4, 0xb1, 0x70, 0x41, 0x6b, 0x87, 0x0, 0xff }\ 25 }; 26 27 extern EFI_GUID gPeiCapsuleOnFatFloppyDiskGuid; 28 29 #endif 30