Home | History | Annotate | Download | only in Common

Lines Matching defs:InputFile

183   FILE    *InputFile;

198 InputFile = fopen (InputFileName, "rb");
199 if (InputFile == NULL) {
206 if (fseek (InputFile, 0, SEEK_END)) {
208 fclose (InputFile);
214 FileSize = ftell (InputFile);
217 fclose (InputFile);
225 fclose (InputFile);
231 if (fseek (InputFile, 0, SEEK_SET)) {
233 fclose (InputFile);
241 *BytesRead = fread (*InputFileImage, sizeof (UINT8), FileSize, InputFile);
244 fclose (InputFile);
252 fclose (InputFile);