]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Library/CustomDecompressLib.h
d92805076077f4e099046462045cac02583e3886
[mirror_edk2.git] / MdePkg / Include / Library / CustomDecompressLib.h
1 /** @file
2 Custom Decompress Functions
3
4 Copyright (c) 2006 - 2007, 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 **/
14
15
16 #ifndef __CUSTOM_DECPOMPRESS_LIB_H__
17 #define __CUSTOM_DECPOMPRESS_LIB_H__
18
19 RETURN_STATUS
20 EFIAPI
21 CustomDecompressGetInfo (
22 IN CONST VOID *Source,
23 IN UINT32 SourceSize,
24 OUT UINT32 *DestinationSize,
25 OUT UINT32 *ScratchSize
26 );
27
28 RETURN_STATUS
29 EFIAPI
30 CustomDecompress (
31 IN CONST VOID *Source,
32 IN OUT VOID *Destination,
33 IN OUT VOID *Scratch
34 );
35
36 #endif