X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=EmbeddedPkg%2FInclude%2FGuid%2FExtractSection.h;h=f1781197e43c20f009327b6ca795d01140e84b90;hp=4dedb60b10e7c83c72261c25624ebc81d4dac4b9;hb=HEAD;hpb=607a0df601d0dcdc3f03e70ec36f41b164e55f7a diff --git a/EmbeddedPkg/Include/Guid/ExtractSection.h b/EmbeddedPkg/Include/Guid/ExtractSection.h old mode 100755 new mode 100644 index 4dedb60b10..7346296fbc --- a/EmbeddedPkg/Include/Guid/ExtractSection.h +++ b/EmbeddedPkg/Include/Guid/ExtractSection.h @@ -1,14 +1,8 @@ /** @file - Copyright (c) 2008-2009 Apple Inc. All rights reserved.
+ Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.
- All rights reserved. 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. + SPDX-License-Identifier: BSD-2-Clause-Patent **/ @@ -17,17 +11,18 @@ #include - // // The GUID for this protocol mathes the Decompression scheme being used // So for example LZMA would be gLzmaCustomDecompressGuid // +typedef struct { + EXTRACT_GUIDED_SECTION_GET_INFO_HANDLER SectionGetInfo; + EXTRACT_GUIDED_SECTION_DECODE_HANDLER SectionExtraction; +} EXTRACT_SECTION_DATA; typedef struct { - EFI_HOB_GUID_TYPE Hob; - EXTRACT_GUIDED_SECTION_GET_INFO_HANDLER SectionGetInfo; - EXTRACT_GUIDED_SECTION_DECODE_HANDLER SectionExtraction; + EFI_HOB_GUID_TYPE Hob; + EXTRACT_SECTION_DATA Data; } EXTRACT_SECTION_HOB; #endif -