Lines Matching refs:fpOutCD
39 FILE* fpOutCD = fopen(fileOutTmp, "wb");
169 if (fwrite(header, 1, 46, fpOutCD) == 46) {
174 if (fwrite(filename, 1, fnsize, fpOutCD) == fnsize) {
187 if (fwrite(extra, 1, extsize, fpOutCD) == extsize) {
197 if ((int)fwrite(comment, 1, comsize, fpOutCD) == comsize) {
239 if (fwrite(header, 1, 22, fpOutCD) == 22) {
243 if ((int)fwrite(comment, 1, comsize, fpOutCD) != comsize) {
254 fclose(fpOutCD);
256 fpOutCD = fopen(fileOutTmp, "rb");
257 if (fpOutCD != NULL) {
260 while ( (nRead = (int)fread(buffer, 1, sizeof(buffer), fpOutCD)) > 0) {
266 fclose(fpOutCD);