20 bytes removed from bzip2 and some cleanup =)

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1291 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
justin1014 2002-10-03 06:11:22 +00:00
parent 5040298c75
commit df46b6aefc
3 changed files with 5 additions and 39 deletions

View file

@ -383,24 +383,19 @@ typedef
/* state indicator for this stream */
char state;
/* for doing the final run-length decoding */
UChar state_out_ch;
Int32 state_out_len;
Int32 nblock_used;
Int32 k0;
UInt32 tPos;
/* the buffer for bit stream reading */
UInt32 bsBuff;
Int32 bsLive;
/* misc administratium */
Int32 currBlockNo;
Int32 verbosity;
/* for undoing the Burrows-Wheeler transform */
Int32 origPtr;
UInt32 tPos;
Int32 k0;
Int32 unzftab[256];
Int32 nblock_used;
Int32 cftab[257];
Int32 cftabCopy[257];
@ -413,12 +408,6 @@ typedef
UChar ll4 [((1 + NSIS_COMPRESS_BZIP2_LEVEL*100000) >> 1) ];
#endif
/* stored and calculated CRCs */
// UInt32 storedBlockCRC;
// UInt32 storedCombinedCRC;
// UInt32 calculatedBlockCRC;
//UInt32 calculatedCombinedCRC;
/* map of bytes used in block */
Int32 nInUse;
Bool inUse[256];
@ -439,7 +428,6 @@ typedef
/* save area for scalars in the main decompress code */
DState_save save;
}
DState;