Function zlibCompileFlags

Source
pub const extern "C" fn zlibCompileFlags() -> c_ulong
Expand description

Return flags indicating compile-time options.

Type sizes, two bits each, 0b00 = 16 bits, 0b01 = 32, 0b10 = 64, 0b11 = other:

bitsdescription
0..=1size of uInt
2..=3size of uLong
4..=5size of voidpf (pointer)
6..=7size of z_off_t

Compiler, assembler, and debug options:

bitsflagdescription
8ZLIB_DEBUGdebug prints are enabled
9ASMV or ASMINFuse ASM code
10ZLIB_WINAPIexported functions use the WINAPI calling convention
11reserved

One-time table building (smaller code, but not thread-safe if true):

bitsflagdescription
12BUILDFIXEDbuild static block decoding tables when needed
13DYNAMIC_CRC_TABLEbuild CRC calculation tables when needed
14reserved
15reserved

Library content (indicates missing functionality):

bitsflagdescription
16NO_GZCOMPRESSgz* functions cannot compress (to avoid linking deflate code when not needed)
17NO_GZIPdeflate can’t write gzip streams, and inflate can’t detect and decode gzip streams (to avoid linking crc code)
18reserved
19reserved

Operation variations (changes in library functionality):

bitsflagdescription
20PKZIP_BUG_WORKAROUNDslightly more permissive inflate
21FASTESTdeflate algorithm with only one, lowest compression level
22reserved
23reserved

The sprintf variant used by gzprintf (zero is best):

bitsvaluedescription
240 = vs*, 1 = s*1 means limited to 20 arguments after the format
250 = *nprintf, 1 = *printf1 means gzprintf not secure!
260 = returns value, 1 = void1 means inferred string length returned

Remainder:

The remaining bits 27..=31 are 0 (reserved).