3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14 BaseCustomDecompressLibNull.c
18 NULL Custom Decompress Library
24 CustomDecompressGetInfo (
25 IN CONST VOID
*Source
,
27 OUT UINT32
*DestinationSize
,
28 OUT UINT32
*ScratchSize
34 The internal implementation of *_DECOMPRESS_PROTOCOL.GetInfo().
38 Source - The source buffer containing the compressed data.
39 SourceSize - The size of source buffer
40 DestinationSize - The size of destination buffer.
41 ScratchSize - The size of scratch buffer.
45 RETURN_SUCCESS - The size of destination buffer and the size of scratch buffer are successull retrieved.
46 RETURN_INVALID_PARAMETER - The source data is corrupted
50 return RETURN_UNSUPPORTED
;
56 IN CONST VOID
*Source
,
57 IN OUT VOID
*Destination
,
64 The internal implementation of *_DECOMPRESS_PROTOCOL.Decompress().
68 Source - The source buffer containing the compressed data.
69 Destination - The destination buffer to store the decompressed data
70 Scratch - The buffer used internally by the decompress routine. This buffer is needed to store intermediate data.
74 RETURN_SUCCESS - Decompression is successfull
75 RETURN_INVALID_PARAMETER - The source data is corrupted
79 return RETURN_UNSUPPORTED
;