]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EdkCompatibilityPkg/Foundation/Framework/Protocol/SectionExtraction/SectionExtraction.h
EdkCompatibilityPkg: Remove EdkCompatibilityPkg
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Framework / Protocol / SectionExtraction / SectionExtraction.h
diff --git a/EdkCompatibilityPkg/Foundation/Framework/Protocol/SectionExtraction/SectionExtraction.h b/EdkCompatibilityPkg/Foundation/Framework/Protocol/SectionExtraction/SectionExtraction.h
deleted file mode 100644 (file)
index acc9517..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-/*++\r
-\r
-Copyright (c) 2004, Intel Corporation. All rights reserved.<BR>\r
-This program and the accompanying materials                          \r
-are licensed and made available under the terms and conditions of the BSD License         \r
-which accompanies this distribution.  The full text of the license may be found at        \r
-http://opensource.org/licenses/bsd-license.php                                            \r
-                                                                                          \r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     \r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             \r
-\r
-Module Name:\r
-\r
-  SectionExtraction.h\r
-\r
-Abstract:\r
-\r
-  Section extraction protocol as defined in the Tiano File Image Format specification.\r
-\r
-  This interface provides a means of decoding a set of sections into a linked list of\r
-  leaf sections.  This provides for an extensible and flexible file format.\r
-\r
---*/\r
-\r
-#ifndef _SECTION_EXTRACTION_PROTOCOL_H\r
-#define _SECTION_EXTRACTION_PROTOCOL_H\r
-\r
-#include "EfiFirmwareFileSystem.h"\r
-\r
-//\r
-// Protocol GUID definition\r
-//\r
-#define EFI_SECTION_EXTRACTION_PROTOCOL_GUID \\r
-  { \\r
-    0x448F5DA4, 0x6DD7, 0x4FE1, {0x93, 0x07, 0x69, 0x22, 0x41, 0x92, 0x21, 0x5D} \\r
-  }\r
-\r
-EFI_FORWARD_DECLARATION (EFI_SECTION_EXTRACTION_PROTOCOL);\r
-\r
-//\r
-// Protocol member functions\r
-//\r
-typedef\r
-EFI_STATUS\r
-(EFIAPI *EFI_OPEN_SECTION_STREAM) (\r
-  IN  EFI_SECTION_EXTRACTION_PROTOCOL                   * This,\r
-  IN  UINTN                                             SectionStreamLength,\r
-  IN  VOID                                              *SectionStream,\r
-  OUT UINTN                                             *SectionStreamHandle\r
-  );\r
-\r
-typedef\r
-EFI_STATUS\r
-(EFIAPI *EFI_GET_SECTION) (\r
-  IN EFI_SECTION_EXTRACTION_PROTOCOL                    * This,\r
-  IN UINTN                                              SectionStreamHandle,\r
-  IN EFI_SECTION_TYPE                                   * SectionType,\r
-  IN EFI_GUID                                           * SectionDefinitionGuid,\r
-  IN UINTN                                              SectionInstance,\r
-  IN VOID                                               **Buffer,\r
-  IN OUT UINTN                                          *BufferSize,\r
-  OUT UINT32                                            *AuthenticationStatus\r
-  );\r
-\r
-typedef\r
-EFI_STATUS\r
-(EFIAPI *EFI_CLOSE_SECTION_STREAM) (\r
-  IN EFI_SECTION_EXTRACTION_PROTOCOL                    * This,\r
-  IN UINTN                                              SectionStreamHandle\r
-  );\r
-\r
-//\r
-// Protocol definition\r
-//\r
-struct _EFI_SECTION_EXTRACTION_PROTOCOL {\r
-  EFI_OPEN_SECTION_STREAM   OpenSectionStream;\r
-  EFI_GET_SECTION           GetSection;\r
-  EFI_CLOSE_SECTION_STREAM  CloseSectionStream;\r
-};\r
-\r
-extern EFI_GUID gEfiSectionExtractionProtocolGuid;\r
-\r
-#endif\r