2007-06-28 09:00:39 +02:00
|
|
|
/*++
|
|
|
|
|
2010-04-28 14:14:56 +02:00
|
|
|
Copyright (c) 2004, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2007-06-28 09:00:39 +02:00
|
|
|
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.
|
|
|
|
|
|
|
|
Module Name:
|
|
|
|
|
|
|
|
SectionExtraction.h
|
|
|
|
|
|
|
|
Abstract:
|
|
|
|
|
|
|
|
Section extraction protocol as defined in the Tiano File Image Format specification.
|
|
|
|
|
|
|
|
This interface provides a means of decoding a set of sections into a linked list of
|
|
|
|
leaf sections. This provides for an extensible and flexible file format.
|
|
|
|
|
|
|
|
--*/
|
|
|
|
|
|
|
|
#ifndef _SECTION_EXTRACTION_PROTOCOL_H
|
|
|
|
#define _SECTION_EXTRACTION_PROTOCOL_H
|
|
|
|
|
|
|
|
#include "EfiFirmwareFileSystem.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// Protocol GUID definition
|
|
|
|
//
|
|
|
|
#define EFI_SECTION_EXTRACTION_PROTOCOL_GUID \
|
|
|
|
{ \
|
2008-03-28 13:00:46 +01:00
|
|
|
0x448F5DA4, 0x6DD7, 0x4FE1, {0x93, 0x07, 0x69, 0x22, 0x41, 0x92, 0x21, 0x5D} \
|
2007-06-28 09:00:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
EFI_FORWARD_DECLARATION (EFI_SECTION_EXTRACTION_PROTOCOL);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Protocol member functions
|
|
|
|
//
|
|
|
|
typedef
|
|
|
|
EFI_STATUS
|
|
|
|
(EFIAPI *EFI_OPEN_SECTION_STREAM) (
|
|
|
|
IN EFI_SECTION_EXTRACTION_PROTOCOL * This,
|
|
|
|
IN UINTN SectionStreamLength,
|
|
|
|
IN VOID *SectionStream,
|
|
|
|
OUT UINTN *SectionStreamHandle
|
|
|
|
);
|
|
|
|
|
|
|
|
typedef
|
|
|
|
EFI_STATUS
|
|
|
|
(EFIAPI *EFI_GET_SECTION) (
|
|
|
|
IN EFI_SECTION_EXTRACTION_PROTOCOL * This,
|
|
|
|
IN UINTN SectionStreamHandle,
|
|
|
|
IN EFI_SECTION_TYPE * SectionType,
|
|
|
|
IN EFI_GUID * SectionDefinitionGuid,
|
|
|
|
IN UINTN SectionInstance,
|
|
|
|
IN VOID **Buffer,
|
|
|
|
IN OUT UINTN *BufferSize,
|
|
|
|
OUT UINT32 *AuthenticationStatus
|
|
|
|
);
|
|
|
|
|
|
|
|
typedef
|
|
|
|
EFI_STATUS
|
|
|
|
(EFIAPI *EFI_CLOSE_SECTION_STREAM) (
|
|
|
|
IN EFI_SECTION_EXTRACTION_PROTOCOL * This,
|
|
|
|
IN UINTN SectionStreamHandle
|
|
|
|
);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Protocol definition
|
|
|
|
//
|
2008-03-20 22:17:47 +01:00
|
|
|
struct _EFI_SECTION_EXTRACTION_PROTOCOL {
|
2007-06-28 09:00:39 +02:00
|
|
|
EFI_OPEN_SECTION_STREAM OpenSectionStream;
|
|
|
|
EFI_GET_SECTION GetSection;
|
|
|
|
EFI_CLOSE_SECTION_STREAM CloseSectionStream;
|
2008-03-20 22:17:47 +01:00
|
|
|
};
|
2007-06-28 09:00:39 +02:00
|
|
|
|
|
|
|
extern EFI_GUID gEfiSectionExtractionProtocolGuid;
|
|
|
|
|
|
|
|
#endif
|