]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Include/Protocol/Crc32GuidedSectionExtraction.h
1. Sync the latest network stack. Add NetLibCreateIPv4DPathNode () in netlib library.
[mirror_edk2.git] / MdeModulePkg / Include / Protocol / Crc32GuidedSectionExtraction.h
1 /** @file
2 This protocol implements a FV section extraction using a CRC32 encapsulation.
3
4 The GUID defins the encapsulation scheme and the data structures come from
5 the SectionExtraction protocol definition.
6
7 Copyright (c) 2006, Intel Corporation
8 All rights reserved. This program and the accompanying materials
9 are licensed and made available under the terms and conditions of the BSD License
10 which accompanies this distribution. The full text of the license may be found at
11 http://opensource.org/licenses/bsd-license.php
12
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15
16 **/
17
18 #ifndef __CRC32_GUIDED_SECTION_EXTRACTION_PROTOCOL_H__
19 #define __CRC32_GUIDED_SECTION_EXTRACTION_PROTOCOL_H__
20
21
22 //
23 // Protocol GUID definition. Each GUIDed section extraction protocol has the
24 // same interface but with different GUID. All the GUIDs is defined here.
25 // May add multiple GUIDs here.
26 //
27 #define EFI_CRC32_GUIDED_SECTION_EXTRACTION_PROTOCOL_GUID \
28 { 0xFC1BCDB0, 0x7D31, 0x49aa, {0x93, 0x6A, 0xA4, 0x60, 0x0D, 0x9D, 0xD0, 0x83 } }
29
30 //
31 // Forward reference for pure ANSI compatability
32 //
33 typedef struct _EFI_CRC32_GUIDED_SECTION_EXTRACTION_PROTOCOL EFI_CRC32_GUID_SECTION_EXTRACTION_PROTOCOL;
34
35 //
36 // The data structures are the same as GuidedSectionExtraction protocol only the GUID's are different
37 //
38 #include <Protocol/GuidedSectionExtraction.h>
39
40 extern EFI_GUID gEfiCrc32GuidedSectionExtractionProtocolGuid;
41
42 #endif