]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Library/UefiDecompressLib.h
add function header
[mirror_edk2.git] / MdePkg / Include / Library / UefiDecompressLib.h
1 /** @file
2 Return UEFI Decompress Protocol
3
4 Copyright (c) 2006, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 Module Name: UefiDecompressLib.h
14
15 **/
16
17 #ifndef __UEFI_DECPOMPRESS_LIB_H__
18 #define __UEFI_DECPOMPRESS_LIB_H__
19
20 RETURN_STATUS
21 EFIAPI
22 UefiDecompressGetInfo (
23 IN CONST VOID *Source,
24 IN UINT32 SourceSize,
25 OUT UINT32 *DestinationSize,
26 OUT UINT32 *ScratchSize
27 );
28
29 RETURN_STATUS
30 EFIAPI
31 UefiDecompress (
32 IN CONST VOID *Source,
33 IN OUT VOID *Destination,
34 IN OUT VOID *Scratch
35 );
36
37 #endif