Browse Source

* Some changes for >4Gb files

git-svn-id: trunk@33335 -
michael 9 years ago
parent
commit
32a56c57a2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/paszlib/src/zbase.pas

+ 2 - 2
packages/paszlib/src/zbase.pas

@@ -288,11 +288,11 @@ type
   z_stream = record
   z_stream = record
     next_in : Pbyte;     { next input byte }
     next_in : Pbyte;     { next input byte }
     avail_in : cardinal;      { number of bytes available at next_in }
     avail_in : cardinal;      { number of bytes available at next_in }
-    total_in : cardinal;     { total nb of input bytes read so far }
+    total_in : qword;     { total nb of input bytes read so far }
 
 
     next_out : Pbyte;    { next output byte should be put there }
     next_out : Pbyte;    { next output byte should be put there }
     avail_out : cardinal;     { remaining free space at next_out }
     avail_out : cardinal;     { remaining free space at next_out }
-    total_out : cardinal;    { total nb of bytes output so far }
+    total_out : qword;    { total nb of bytes output so far }
 
 
     msg : string[255];         { last error message, '' if no error }
     msg : string[255];         { last error message, '' if no error }
     state : pInternal_state; { not visible by applications }
     state : pInternal_state; { not visible by applications }