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

Side by Side Diff: third_party/lzma_sdk/7zFile.c

Issue 1700453002: Update lzma_sdk sources to 15.14. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Chromium modifications Created 4 years, 10 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
« no previous file with comments | « third_party/lzma_sdk/7zFile.h ('k') | third_party/lzma_sdk/7zIn.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 7zFile.c -- File IO 1 /* 7zFile.c -- File IO
2 2009-11-24 : Igor Pavlov : Public domain */ 2 2009-11-24 : Igor Pavlov : Public domain */
3 3
4 #include "Precomp.h"
5
4 #include "7zFile.h" 6 #include "7zFile.h"
5 7
6 #ifndef USE_WINDOWS_FILE 8 #ifndef USE_WINDOWS_FILE
7 9
8 #ifndef UNDER_CE 10 #ifndef UNDER_CE
9 #include <errno.h> 11 #include <errno.h>
10 #endif 12 #endif
11 13
12 #else 14 #else
13 15
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 { 277 {
276 CFileOutStream *p = (CFileOutStream *)pp; 278 CFileOutStream *p = (CFileOutStream *)pp;
277 File_Write(&p->file, data, &size); 279 File_Write(&p->file, data, &size);
278 return size; 280 return size;
279 } 281 }
280 282
281 void FileOutStream_CreateVTable(CFileOutStream *p) 283 void FileOutStream_CreateVTable(CFileOutStream *p)
282 { 284 {
283 p->s.Write = FileOutStream_Write; 285 p->s.Write = FileOutStream_Write;
284 } 286 }
OLDNEW
« no previous file with comments | « third_party/lzma_sdk/7zFile.h ('k') | third_party/lzma_sdk/7zIn.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698