Home | History | Annotate | Download | only in minizip

Lines Matching refs:fpOutCD

40   FILE* fpOutCD = fopen(fileOutTmp, "wb");
170 if (fwrite(header, 1, 46, fpOutCD) == 46) {
175 if (fwrite(filename, 1, fnsize, fpOutCD) == fnsize) {
188 if (fwrite(extra, 1, extsize, fpOutCD) == extsize) {
198 if ((int)fwrite(comment, 1, comsize, fpOutCD) == comsize) {
240 if (fwrite(header, 1, 22, fpOutCD) == 22) {
244 if ((int)fwrite(comment, 1, comsize, fpOutCD) != comsize) {
255 fclose(fpOutCD);
257 fpOutCD = fopen(fileOutTmp, "rb");
258 if (fpOutCD != NULL) {
261 while ( (nRead = (int)fread(buffer, 1, sizeof(buffer), fpOutCD)) > 0) {
267 fclose(fpOutCD);