Searched defs:ZStrm (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/common/zip/
H A Dzip.cpp1941 z_stream ZStrm; variable
1942 RT_ZERO(ZStrm); variable
1943 ZStrm.next_in = (Bytef *)pvSrc;
1944 ZStrm.avail_in = (uInt)cbSrc;
1945 ZStrm.next_out = (Bytef *)pvDst;
1946 ZStrm.avail_out = (uInt)cbDst;
1948 int rc = inflateInit(&ZStrm);
1951 rc = inflate(&ZStrm, Z_FINISH);
1954 inflateEnd(&ZStrm); variable
1955 if ((rc == Z_BUF_ERROR && ZStrm
[all...]

Completed in 78 milliseconds