| 479 | } |
| 480 | |
| 481 | static void BFD_close(tag_xFile* bffp, void* xtradata) |
| 482 | { |
| 483 | st_BINIO_XTRADATA* xtra = (st_BINIO_XTRADATA*)xtradata; |
| 484 | |
| 485 | iFileClose(bffp); |
| 486 | |
| 487 | xtra->fpos = 0; |
| 488 | xtra->dbl_buf = NULL; |
| 489 | xtra->dblbuf_size = 0; |
| 490 | xtra->dbl_beg = 0; |
| 491 | xtra->dbl_end = 0; |
| 492 | xtra->dbl_amt = 0; |
| 493 | } |
| 494 | |
| 495 | static S32 BFD_read(void* data, S32 elesize, S32 elecnt, tag_xFile* bffp, void* xtradata) |
| 496 | { |
no test coverage detected