]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdePkg/Library/BaseCustomDecompressLibNull/BaseCustomDecompressLibNull.c
Changed the library class name to HiiLibFramework
[mirror_edk2.git] / MdePkg / Library / BaseCustomDecompressLibNull / BaseCustomDecompressLibNull.c
... / ...
CommitLineData
1/** @file\r
2 Null implementation of the custom decompress library\r
3\r
4 Copyright (c) 2006 - 2007, Intel Corporation.<BR>\r
5 All rights reserved. This program and the accompanying materials \r
6 are licensed and made available under the terms and conditions of the BSD License \r
7 which accompanies this distribution. The full text of the license may be found at \r
8 http://opensource.org/licenses/bsd-license.php \r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12\r
13**/\r
14\r
15#include <Base.h>\r
16#include <Library/CustomDecompressLib.h>\r
17\r
18\r
19/**
20 The internal implementation of *_DECOMPRESS_PROTOCOL.GetInfo().\r
21
22 @param[in] Source The source buffer containing the compressed data.
23 @param[in] SourceSize The size of source buffer
24 @param[out] DestinationSize The size of destination buffer.
25 @param[out] ScratchSize The size of scratch buffer.
26
27 @retval RETURN_SUCCESS The size of destination buffer and the size of scratch buffer are successull retrieved.\r
28 @retval RETURN_INVALID_PARAMETER The source data is corrupted
29
30**/\r
31RETURN_STATUS\r
32EFIAPI\r
33CustomDecompressGetInfo (\r
34 IN CONST VOID *Source,\r
35 IN UINT32 SourceSize,\r
36 OUT UINT32 *DestinationSize,\r
37 OUT UINT32 *ScratchSize\r
38 )\r
39{\r
40 return RETURN_UNSUPPORTED;\r
41}\r
42\r
43\r
44/**
45 The internal implementation of *_DECOMPRESS_PROTOCOL.Decompress().\r
46
47 @param[in] Source The source buffer containing the compressed data.
48 @param[in] Destination The destination buffer to store the decompressed data
49 @param[out] Scratch The buffer used internally by the decompress routine. This buffer is needed to store intermediate data.\r
50
51
52 @retval RETURN_SUCCESS Decompression is successfull\r
53 @retval RETURN_INVALID_PARAMETER The source data is corrupted
54
55**/\r
56RETURN_STATUS\r
57EFIAPI\r
58CustomDecompress (\r
59 IN CONST VOID *Source,\r
60 IN OUT VOID *Destination,\r
61 IN OUT VOID *Scratch\r
62 )\r
63{\r
64 return RETURN_UNSUPPORTED;\r
65}\r