Home | History | Annotate | Download | only in jhead

Lines Matching full:outfile

790     FILE * outfile;
798 outfile = fopen(FileName,"wb");
799 if (outfile == NULL){
805 fputc(0xff,outfile);
806 fputc(0xd8,outfile);
815 fwrite(JfifHead, 18, 1, outfile);
822 fputc(0xff,outfile);
823 fputc((unsigned char)Sections[a].Type, outfile);
824 nWrite = fwrite(Sections[a].Data, 1, Sections[a].Size, outfile);
834 nWrite = fwrite(Sections[a].Data, 1,Sections[a].Size, outfile);
841 fclose(outfile);