2010-01-30 21:44:32 +01:00
|
|
|
/** @file
|
|
|
|
|
2010-04-29 14:40:51 +02:00
|
|
|
Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
|
2010-01-30 21:44:32 +01:00
|
|
|
|
2019-04-04 01:03:38 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2010-01-30 21:44:32 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __EXTRACT_SECTION_GUID_H__
|
|
|
|
#define __EXTRACT_SECTION_GUID_H__
|
|
|
|
|
|
|
|
#include <Library/ExtractGuidedSectionLib.h>
|
|
|
|
|
|
|
|
//
|
|
|
|
// The GUID for this protocol mathes the Decompression scheme being used
|
|
|
|
// So for example LZMA would be gLzmaCustomDecompressGuid
|
|
|
|
//
|
|
|
|
typedef struct {
|
2021-12-05 23:53:56 +01:00
|
|
|
EXTRACT_GUIDED_SECTION_GET_INFO_HANDLER SectionGetInfo;
|
|
|
|
EXTRACT_GUIDED_SECTION_DECODE_HANDLER SectionExtraction;
|
2010-01-31 02:39:20 +01:00
|
|
|
} EXTRACT_SECTION_DATA;
|
|
|
|
|
|
|
|
typedef struct {
|
2021-12-05 23:53:56 +01:00
|
|
|
EFI_HOB_GUID_TYPE Hob;
|
|
|
|
EXTRACT_SECTION_DATA Data;
|
2010-01-30 21:44:32 +01:00
|
|
|
} EXTRACT_SECTION_HOB;
|
|
|
|
|
|
|
|
#endif
|