diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2024-07-01 19:24:01 -0500 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2024-07-01 19:34:40 -0500 |
commit | e011d8c164402cbb1baf92533dfb4f933ec08fee (patch) | |
tree | 7a28431c3c5caf885f07deac6718787b36f2231c /contrib/vstudio/vc10 | |
parent | 534864bccd78812648ad1beaccdeec7c9d47aeef (diff) | |
download | zlib-e011d8c164402cbb1baf92533dfb4f933ec08fee.tar.gz zlib-e011d8c164402cbb1baf92533dfb4f933ec08fee.tar.bz2 zlib-e011d8c164402cbb1baf92533dfb4f933ec08fee.zip |
Add deflateUsed() function to get the used bits in the last byte.
This returns the number of used bits in the last byte of a stream
that has just been compressed with deflate.
Diffstat (limited to 'contrib/vstudio/vc10')
-rw-r--r-- | contrib/vstudio/vc10/zlibvc.def | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/contrib/vstudio/vc10/zlibvc.def b/contrib/vstudio/vc10/zlibvc.def index f28aa6c..61b2d3f 100644 --- a/contrib/vstudio/vc10/zlibvc.def +++ b/contrib/vstudio/vc10/zlibvc.def | |||
@@ -1,7 +1,7 @@ | |||
1 | LIBRARY | 1 | LIBRARY |
2 | ; zlib data compression and ZIP file I/O library | 2 | ; zlib data compression and ZIP file I/O library |
3 | 3 | ||
4 | VERSION 1.3 | 4 | VERSION 1.3 |
5 | 5 | ||
6 | EXPORTS | 6 | EXPORTS |
7 | adler32 @1 | 7 | adler32 @1 |
@@ -153,6 +153,9 @@ EXPORTS | |||
153 | crc32_z @175 | 153 | crc32_z @175 |
154 | 154 | ||
155 | ; zlib1 v1.2.12 added: | 155 | ; zlib1 v1.2.12 added: |
156 | crc32_combine_gen @176 | 156 | crc32_combine_gen @176 |
157 | crc32_combine_gen64 @177 | 157 | crc32_combine_gen64 @177 |
158 | crc32_combine_op @178 | 158 | crc32_combine_op @178 |
159 | |||
160 | ; zlib1 v1.3.2 added: | ||
161 | deflateUsed @179 | ||