mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
12 lines
219 B
C
12 lines
219 B
C
|
/*
|
||
|
* zlib header fields
|
||
|
*/
|
||
|
enum
|
||
|
{
|
||
|
ZlibMeth = 0x0f, /* mask of compression methods */
|
||
|
ZlibDeflate = 0x08,
|
||
|
|
||
|
ZlibCInfo = 0xf0, /* mask of compression aux. info */
|
||
|
ZlibWin32k = 0x70, /* 32k history window */
|
||
|
};
|