21#ifndef __WINE_CABINET_H
22#define __WINE_CABINET_H
32#define CAB_SPLITMAX (10)
34#define CAB_SEARCH_SIZE (32*1024)
47#define CAB_ULONG_BITS (sizeof(cab_ULONG) * CHAR_BIT)
50#define cfhead_Signature (0x00)
51#define cfhead_CabinetSize (0x08)
52#define cfhead_FileOffset (0x10)
53#define cfhead_MinorVersion (0x18)
54#define cfhead_MajorVersion (0x19)
55#define cfhead_NumFolders (0x1A)
56#define cfhead_NumFiles (0x1C)
57#define cfhead_Flags (0x1E)
58#define cfhead_SetID (0x20)
59#define cfhead_CabinetIndex (0x22)
60#define cfhead_SIZEOF (0x24)
61#define cfheadext_HeaderReserved (0x00)
62#define cfheadext_FolderReserved (0x02)
63#define cfheadext_DataReserved (0x03)
64#define cfheadext_SIZEOF (0x04)
65#define cffold_DataOffset (0x00)
66#define cffold_NumBlocks (0x04)
67#define cffold_CompType (0x06)
68#define cffold_SIZEOF (0x08)
69#define cffile_UncompressedSize (0x00)
70#define cffile_FolderOffset (0x04)
71#define cffile_FolderIndex (0x08)
72#define cffile_Date (0x0A)
73#define cffile_Time (0x0C)
74#define cffile_Attribs (0x0E)
75#define cffile_SIZEOF (0x10)
76#define cfdata_CheckSum (0x00)
77#define cfdata_CompressedSize (0x04)
78#define cfdata_UncompressedSize (0x06)
79#define cfdata_SIZEOF (0x08)
82#define cffoldCOMPTYPE_MASK (0x000f)
83#define cffoldCOMPTYPE_NONE (0x0000)
84#define cffoldCOMPTYPE_MSZIP (0x0001)
85#define cffoldCOMPTYPE_QUANTUM (0x0002)
86#define cffoldCOMPTYPE_LZX (0x0003)
87#define cfheadPREV_CABINET (0x0001)
88#define cfheadNEXT_CABINET (0x0002)
89#define cfheadRESERVE_PRESENT (0x0004)
90#define cffileCONTINUED_FROM_PREV (0xFFFD)
91#define cffileCONTINUED_TO_NEXT (0xFFFE)
92#define cffileCONTINUED_PREV_AND_NEXT (0xFFFF)
93#define cffile_A_RDONLY (0x01)
94#define cffile_A_HIDDEN (0x02)
95#define cffile_A_SYSTEM (0x04)
96#define cffile_A_ARCH (0x20)
97#define cffile_A_EXEC (0x40)
98#define cffile_A_NAME_IS_UTF (0x80)
104#define ZIPWSIZE 0x8000
166#define LZX_MIN_MATCH (2)
167#define LZX_MAX_MATCH (257)
168#define LZX_NUM_CHARS (256)
169#define LZX_BLOCKTYPE_INVALID (0)
170#define LZX_BLOCKTYPE_VERBATIM (1)
171#define LZX_BLOCKTYPE_ALIGNED (2)
172#define LZX_BLOCKTYPE_UNCOMPRESSED (3)
173#define LZX_PRETREE_NUM_ELEMENTS (20)
174#define LZX_ALIGNED_NUM_ELEMENTS (8)
175#define LZX_NUM_PRIMARY_LENGTHS (7)
176#define LZX_NUM_SECONDARY_LENGTHS (249)
179#define LZX_PRETREE_MAXSYMBOLS (LZX_PRETREE_NUM_ELEMENTS)
180#define LZX_PRETREE_TABLEBITS (6)
181#define LZX_MAINTREE_MAXSYMBOLS (LZX_NUM_CHARS + 50*8)
182#define LZX_MAINTREE_TABLEBITS (12)
183#define LZX_LENGTH_MAXSYMBOLS (LZX_NUM_SECONDARY_LENGTHS+1)
184#define LZX_LENGTH_TABLEBITS (12)
185#define LZX_ALIGNED_MAXSYMBOLS (LZX_ALIGNED_NUM_ELEMENTS)
186#define LZX_ALIGNED_TABLEBITS (7)
188#define LZX_LENTABLE_SAFETY (64)
190#define LZX_DECLARE_TABLE(tbl) \
191 cab_UWORD tbl##_table[(1<<LZX_##tbl##_TABLEBITS) + (LZX_##tbl##_MAXSYMBOLS<<1)];\
192 cab_UBYTE tbl##_len [LZX_##tbl##_MAXSYMBOLS + LZX_LENTABLE_SAFETY]
227#define CAB_BLOCKMAX (32768)
228#define CAB_INPUTMAX (CAB_BLOCKMAX+6144)
320#define Q_INIT_BITSTREAM do { bitsleft = 0; bitbuf = 0; } while (0)
322#define Q_FILL_BUFFER do { \
323 if (bitsleft <= (CAB_ULONG_BITS - 16)) { \
324 bitbuf |= ((inpos[0]<<8)|inpos[1]) << (CAB_ULONG_BITS-16 - bitsleft); \
325 bitsleft += 16; inpos += 2; \
329#define Q_PEEK_BITS(n) (bitbuf >> (CAB_ULONG_BITS - (n)))
330#define Q_REMOVE_BITS(n) ((bitbuf <<= (n)), (bitsleft -= (n)))
332#define Q_READ_BITS(v,n) do { \
334 for (bitsneed = (n); bitsneed; bitsneed -= bitrun) { \
336 bitrun = (bitsneed > bitsleft) ? bitsleft : bitsneed; \
337 (v) = ((v) << bitrun) | Q_PEEK_BITS(bitrun); \
338 Q_REMOVE_BITS(bitrun); \
342#define Q_MENTRIES(model) (QTM(model).entries)
343#define Q_MSYM(model,symidx) (QTM(model).syms[(symidx)].sym)
344#define Q_MSYMFREQ(model,symidx) (QTM(model).syms[(symidx)].cumfreq)
349#define GET_SYMBOL(m, var) do { \
350 range = ((H - L) & 0xFFFF) + 1; \
351 symf = ((((C - L + 1) * Q_MSYMFREQ(m,0)) - 1) / range) & 0xFFFF; \
353 for (i=1; i < Q_MENTRIES(m); i++) { \
354 if (Q_MSYMFREQ(m,i) <= symf) break; \
356 (var) = Q_MSYM(m,i-1); \
358 range = (H - L) + 1; \
359 H = L + ((Q_MSYMFREQ(m,i-1) * range) / Q_MSYMFREQ(m,0)) - 1; \
360 L = L + ((Q_MSYMFREQ(m,i) * range) / Q_MSYMFREQ(m,0)); \
362 if ((L & 0x8000) != (H & 0x8000)) { \
363 if ((L & 0x4000) && !(H & 0x4000)) { \
365 C ^= 0x4000; L &= 0x3FFF; H |= 0x4000; \
369 L <<= 1; H = (H << 1) | 1; \
371 C = (C << 1) | Q_PEEK_BITS(1); \
375 QTMupdatemodel(&(QTM(m)), i); \
396#define INIT_BITSTREAM do { bitsleft = 0; bitbuf = 0; } while (0)
399#define ENSURE_BITS(n) \
400 while (bitsleft < (n)) { \
401 bitbuf |= ((inpos[1]<<8)|inpos[0]) << (CAB_ULONG_BITS-16 - bitsleft); \
402 bitsleft += 16; inpos+=2; \
405#define PEEK_BITS(n) (bitbuf >> (CAB_ULONG_BITS - (n)))
406#define REMOVE_BITS(n) ((bitbuf <<= (n)), (bitsleft -= (n)))
408#define READ_BITS(v,n) do { \
411 (v) = PEEK_BITS(n); \
421#define TABLEBITS(tbl) (LZX_##tbl##_TABLEBITS)
422#define MAXSYMBOLS(tbl) (LZX_##tbl##_MAXSYMBOLS)
423#define SYMTABLE(tbl) (LZX(tbl##_table))
424#define LENTABLE(tbl) (LZX(tbl##_len))
431#define BUILD_TABLE(tbl) \
432 if (make_decode_table( \
433 MAXSYMBOLS(tbl), TABLEBITS(tbl), LENTABLE(tbl), SYMTABLE(tbl) \
434 )) { return DECR_ILLEGALDATA; }
439#define READ_HUFFSYM(tbl,var) do { \
441 hufftbl = SYMTABLE(tbl); \
442 if ((i = hufftbl[PEEK_BITS(TABLEBITS(tbl))]) >= MAXSYMBOLS(tbl)) { \
443 j = 1 << (CAB_ULONG_BITS - TABLEBITS(tbl)); \
445 j >>= 1; i <<= 1; i |= (bitbuf & j) ? 1 : 0; \
446 if (!j) { return DECR_ILLEGALDATA; } \
447 } while ((i = hufftbl[i]) >= MAXSYMBOLS(tbl)); \
449 j = LENTABLE(tbl)[(var) = i]; \
457#define READ_LENGTHS(tbl,first,last,fn) do { \
458 lb.bb = bitbuf; lb.bl = bitsleft; lb.ip = inpos; \
459 if (fn(LENTABLE(tbl),(first),(last),&lb,decomp_state)) { \
460 return DECR_ILLEGALDATA; \
462 bitbuf = lb.bb; bitsleft = lb.bl; inpos = lb.ip; \
467#define THOSE_ZIP_CONSTS \
468static const cab_UBYTE Zipborder[] = \
469{ 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; \
470static const cab_UWORD Zipcplens[] = \
471{ 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, \
472 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0}; \
473static const cab_UWORD Zipcplext[] = \
474{ 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, \
475 4, 5, 5, 5, 5, 0, 99, 99}; \
476static const cab_UWORD Zipcpdist[] = \
477{ 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, \
478513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; \
479static const cab_UWORD Zipcpdext[] = \
480{ 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, \
48110, 11, 11, 12, 12, 13, 13}; \
483static const cab_UWORD Zipmask[17] = { \
484 0x0000, 0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff, \
485 0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff \
489#define EXTRACT_FILLFILELIST 0x00000001
490#define EXTRACT_EXTRACTFILES 0x00000002
vector< FileInfo > FileList
struct cds_forward cab_decomp_state
unsigned int(__cdecl typeof(jpeg_read_scanlines))(struct jpeg_decompress_struct *
_Must_inspect_result_ _Out_ PLARGE_INTEGER FileSize
GLint GLint GLint GLint GLint x
_In_ PUNICODE_STRING _Inout_ PUNICODE_STRING Destination
LZX_DECLARE_TABLE(MAINTREE)
cab_ULONG block_remaining
LZX_DECLARE_TABLE(PRETREE)
LZX_DECLARE_TABLE(ALIGNED)
LZX_DECLARE_TABLE(LENGTH)
struct QTMmodelsym * syms
struct QTMmodel model4 model5 model6pos model6len
struct QTMmodelsym m40sym[0x40+1]
struct QTMmodelsym m4sym[0x18+1]
struct QTMmodel model00 model40 model80 modelC0
struct QTMmodelsym m5sym[0x24+1]
struct QTMmodelsym mC0sym[0x40+1]
struct QTMmodelsym m7sym[7+1]
struct QTMmodelsym m00sym[0x40+1]
struct QTMmodelsym m6psym[0x2a+1]
struct QTMmodelsym m6lsym[0x1b+1]
struct QTMmodelsym m80sym[0x40+1]
struct Ziphuft * u[ZIPBMAX]
struct cab_folder * folder
struct cabinet * cab[CAB_SPLITMAX]
struct cab_file * contfile
struct cab_folder * folders
struct cab_folder * current
cab_UBYTE outbuf[CAB_BLOCKMAX]
cab_UBYTE q_extra_bits[42]
union cds_forward::@329 methods
cab_UBYTE q_length_base[27]
cab_ULONG q_position_base[42]
int(* decompress)(int, int, struct cds_forward *)
cab_UBYTE q_length_extra[27]
cab_UBYTE inbuf[CAB_INPUTMAX+2]
cab_ULONG lzx_position_base[51]
_Reserved_ PVOID Reserved