]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/C/LzmaCompress/LzmaCompress.c
BaseTools LzmaCompress: Update LZMA to new 19.00 version
[mirror_edk2.git] / BaseTools / Source / C / LzmaCompress / LzmaCompress.c
index bebdb9aa84a15da524443b13b63dc5aede6dbd56..bf4706ee2357e96b6e365942a55877356ea80d39 100644 (file)
@@ -1,9 +1,9 @@
 /** @file\r
   LZMA Compress/Decompress tool (LzmaCompress)\r
 \r
-  Based on LZMA SDK 18.05:\r
+  Based on LZMA SDK 19.00:\r
     LzmaUtil.c -- Test application for LZMA compression\r
-    2018-04-30 : Igor Pavlov : Public domain\r
+    2019-02-21 : Igor Pavlov : Public domain\r
 \r
   Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>\r
   SPDX-License-Identifier: BSD-2-Clause-Patent\r
@@ -39,7 +39,7 @@ const char *kCantAllocateMessage = "Can not allocate memory";
 const char *kDataErrorMessage = "Data error";\r
 const char *kInvalidParamValMessage = "Invalid parameter value";\r
 \r
-static Bool mQuietMode = False;\r
+static BoolInt mQuietMode = False;\r
 static CONVERTER_TYPE mConType = NoConverter;\r
 \r
 UINT64 mDictionarySize = 28;\r
@@ -244,7 +244,7 @@ int main2(int numArgs, const char *args[], char *rs)
   CFileOutStream outStream;\r
   int res;\r
   int encodeMode = 0;\r
-  Bool modeWasSet = False;\r
+  BoolInt modeWasSet = False;\r
   const char *inputFile = NULL;\r
   const char *outputFile = "file.tmp";\r
   int param;\r