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

Side by Side Diff: third_party/lzma_sdk/C/XzEnc.h

Issue 6730044: Upgrading lzma_sdk to version 9.20. Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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 unified diff | Download patch
Property Changes:
Added: svn:executable
+ *
OLDNEW
(Empty)
1 /* XzEnc.h -- Xz Encode
2 2009-04-15 : Igor Pavlov : Public domain */
3
4 #ifndef __XZ_ENC_H
5 #define __XZ_ENC_H
6
7 #include "Lzma2Enc.h"
8
9 #include "Xz.h"
10
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14
15 SRes Xz_Encode(ISeqOutStream *outStream, ISeqInStream *inStream,
16 const CLzma2EncProps *lzma2Props, Bool useSubblock,
17 ICompressProgress *progress);
18
19 SRes Xz_EncodeEmpty(ISeqOutStream *outStream);
20
21 #ifdef __cplusplus
22 }
23 #endif
24
25 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698