Lines Matching defs:fpOutCD
34 FILE* fpOutCD = fopen(fileOutTmp, "wb");
164 if (fwrite(header, 1, 46, fpOutCD) == 46) {
169 if (fwrite(filename, 1, fnsize, fpOutCD) == fnsize) {
182 if (fwrite(extra, 1, extsize, fpOutCD) == extsize) {
192 if ((int)fwrite(comment, 1, comsize, fpOutCD) == comsize) {
234 if (fwrite(header, 1, 22, fpOutCD) == 22) {
238 if ((int)fwrite(comment, 1, comsize, fpOutCD) != comsize) {
249 fclose(fpOutCD);
251 fpOutCD = fopen(fileOutTmp, "rb");
252 if (fpOutCD != NULL) {
255 while ( (nRead = (int)fread(buffer, 1, sizeof(buffer), fpOutCD)) > 0) {
261 fclose(fpOutCD);