Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(580)

Unified Diff: third_party/lzma/v4_65/files/C/LzmaUtil/Lzma86Dec.h

Issue 624713003: Keep only base/extractor.[cc|h]. (Closed) Base URL: https://chromium.googlesource.com/external/omaha.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/lzma/v4_65/files/C/LzmaUtil/Lzma86Dec.h
diff --git a/third_party/lzma/v4_65/files/C/LzmaUtil/Lzma86Dec.h b/third_party/lzma/v4_65/files/C/LzmaUtil/Lzma86Dec.h
deleted file mode 100644
index f7118219a1d13a5b0b4b109ed9a30a616c80d31a..0000000000000000000000000000000000000000
--- a/third_party/lzma/v4_65/files/C/LzmaUtil/Lzma86Dec.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/* Lzma86Dec.h -- LZMA + x86 (BCJ) Filter Decoder
-2008-08-05
-Igor Pavlov
-Public domain */
-
-#ifndef __LZMA86DEC_H
-#define __LZMA86DEC_H
-
-#include "../Types.h"
-
-/*
-Lzma86_GetUnpackSize:
- In:
- src - input data
- srcLen - input data size
- Out:
- unpackSize - size of uncompressed stream
- Return code:
- SZ_OK - OK
- SZ_ERROR_INPUT_EOF - Error in headers
-*/
-
-SRes Lzma86_GetUnpackSize(const Byte *src, SizeT srcLen, UInt64 *unpackSize);
-
-/*
-Lzma86_Decode:
- In:
- dest - output data
- destLen - output data size
- src - input data
- srcLen - input data size
- Out:
- destLen - processed output size
- srcLen - processed input size
- Return code:
- SZ_OK - OK
- SZ_ERROR_DATA - Data error
- SZ_ERROR_MEM - Memory allocation error
- SZ_ERROR_UNSUPPORTED - unsupported file
- SZ_ERROR_INPUT_EOF - it needs more bytes in input buffer
-*/
-
-SRes Lzma86_Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen);
-
-#endif
« no previous file with comments | « third_party/lzma/v4_65/files/C/LzmaLib/resource.rc ('k') | third_party/lzma/v4_65/files/C/LzmaUtil/Lzma86Dec.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698