e5ac979a |
1 | /** @file\r |
2 | This file declares GUIDed section extraction protocol.\r |
3 | \r |
b80fbe85 |
4 | This interface provides a means of decoding a GUID defined encapsulation\r |
e5ac979a |
5 | section. There may be multiple different GUIDs associated with the GUIDed\r |
6 | section extraction protocol. That is, all instances of the GUIDed section\r |
7 | extraction protocol must have the same interface structure.\r |
8 | \r |
b80fbe85 |
9 | Copyright (c) 2006, Intel Corporation\r |
10 | All rights reserved. This program and the accompanying materials\r |
11 | are licensed and made available under the terms and conditions of the BSD License\r |
12 | which accompanies this distribution. The full text of the license may be found at\r |
13 | http://opensource.org/licenses/bsd-license.php\r |
e5ac979a |
14 | \r |
b80fbe85 |
15 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r |
16 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r |
e5ac979a |
17 | \r |
18 | Module Name: GuidedSectionExtraction.h\r |
19 | \r |
20 | @par Revision Reference:\r |
21 | This protocol is defined in Firmware Volume Specification.\r |
22 | Version 0.9\r |
23 | \r |
24 | **/\r |
25 | \r |
26 | #ifndef __CRC32_GUIDED_SECTION_EXTRACTION_PROTOCOL_H__\r |
27 | #define __CRC32_GUIDED_SECTION_EXTRACTION_PROTOCOL_H__\r |
28 | \r |
b80fbe85 |
29 | #include <PiPei.h>\r |
e5ac979a |
30 | \r |
31 | //\r |
32 | // Protocol GUID definition. Each GUIDed section extraction protocol has the\r |
33 | // same interface but with different GUID. All the GUIDs is defined here.\r |
34 | // May add multiple GUIDs here.\r |
35 | //\r |
36 | #define EFI_CRC32_GUIDED_SECTION_EXTRACTION_PROTOCOL_GUID \\r |
37 | { \\r |
38 | 0xFC1BCDB0, 0x7D31, 0x49aa, {0x93, 0x6A, 0xA4, 0x60, 0x0D, 0x9D, 0xD0, 0x83 } \\r |
39 | }\r |
40 | \r |
41 | //\r |
42 | // may add other GUID here\r |
43 | //\r |
44 | extern EFI_GUID gEfiCrc32GuidedSectionExtractionProtocolGuid;\r |
45 | \r |
46 | #endif\r |