mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 10:50:59 +01:00
24 lines
No EOL
684 B
JavaScript
24 lines
No EOL
684 B
JavaScript
function ZStream() {
|
|
/* next input byte */
|
|
this.next_in = -1;
|
|
/* number of bytes available at next_in */
|
|
this.avail_in = 0;
|
|
/* total number of input bytes read so far */
|
|
this.total_in = 0;
|
|
/* next output byte should be put there */
|
|
this.next_out = -1;
|
|
/* remaining free space at next_out */
|
|
this.avail_out = 0;
|
|
/* total number of bytes output so far */
|
|
this.total_out = 0;
|
|
/* last error message, NULL if no error */
|
|
this.msg = -1;
|
|
/* not visible by applications */
|
|
this.state = -1;
|
|
/* best guess about the data type: binary or text */
|
|
this.data_type = 2;
|
|
/* adler32 value of the uncompressed data */
|
|
this.adler = 0;
|
|
}
|
|
|
|
module.exports = ZStream; |