X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=DuetPkg%2FEfiLdr%2FLzmaDecompress.h;h=7d20fdace483a84f593d388abf751da5bb64b2e2;hb=c44f9a42d4a564cb04372389276cd48c05ad9914;hp=fbf645e9874ef4a63fa1a340dc9919ab793fca6b;hpb=8b85412a1d3a2648e43a10f6b07e8ffa81c980d3;p=mirror_edk2.git diff --git a/DuetPkg/EfiLdr/LzmaDecompress.h b/DuetPkg/EfiLdr/LzmaDecompress.h index fbf645e987..7d20fdace4 100644 --- a/DuetPkg/EfiLdr/LzmaDecompress.h +++ b/DuetPkg/EfiLdr/LzmaDecompress.h @@ -1,8 +1,8 @@ /** @file LZMA Decompress Library header file - Copyright (c) 2006 - 2009, Intel Corporation
- All rights reserved. This program and the accompanying materials + Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
+ This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php @@ -36,22 +36,35 @@ LzmaUefiDecompressGetInfo ( ); /** - The internal implementation of *_DECOMPRESS_PROTOCOL.Decompress(). - - @param Source - The source buffer containing the compressed data. - @param Destination - The destination buffer to store the decompressed data - @param Scratch - The buffer used internally by the decompress routine. This buffer is needed to store intermediate data. + Decompresses a Lzma compressed source buffer. + + Extracts decompressed data to its original form. + If the compressed source data specified by Source is successfully decompressed + into Destination, then RETURN_SUCCESS is returned. If the compressed source data + specified by Source is not in a valid compressed data format, + then RETURN_INVALID_PARAMETER is returned. - @retval RETURN_SUCCESS - Decompression is successfull - @retval RETURN_INVALID_PARAMETER - The source data is corrupted + @param Source The source buffer containing the compressed data. + @param SourceSize The size of source buffer. + @param Destination The destination buffer to store the decompressed data + @param Scratch A temporary scratch buffer that is used to perform the decompression. + This is an optional parameter that may be NULL if the + required scratch buffer size is 0. + + @retval RETURN_SUCCESS Decompression completed successfully, and + the uncompressed buffer is returned in Destination. + @retval RETURN_INVALID_PARAMETER + The source buffer specified by Source is corrupted + (not in a valid compressed format). **/ RETURN_STATUS EFIAPI LzmaUefiDecompress ( IN CONST VOID *Source, + IN UINTN SourceSize, IN OUT VOID *Destination, IN OUT VOID *Scratch ); - + #endif // __LZMADECOMPRESS_H__