Home | History | Annotate | Download | only in file

Lines Matching full:stdio

35 /* Will not use it on WinCE because stdio is buffered, it means
36 faster, and all stdio functions anyway are embedded in coredll.dll -
261 /* Functions to read/write stdio file pointers */
265 if ( fseek(context->hidden.stdio.fp, offset, whence) == 0 ) {
266 return(ftell(context->hidden.stdio.fp));
276 nread = fread(ptr, size, maxnum, context->hidden.stdio.fp);
277 if ( nread == 0 && ferror(context->hidden.stdio.fp) ) {
286 nwrote = fwrite(ptr, size, num, context->hidden.stdio.fp);
287 if ( nwrote == 0 && ferror(context->hidden.stdio.fp) ) {
295 if ( context->hidden.stdio.autoclose ) {
297 fclose(context->hidden.stdio.fp);
464 SDL_SetError("SDL not compiled with stdio support");
481 rwops->hidden.stdio.fp = fp;
482 rwops->hidden.stdio.autoclose = autoclose;