| 297 | } |
| 298 | |
| 299 | U32 iFileClose(tag_xFile* file) |
| 300 | { |
| 301 | tag_iFile* ps = &file->ps; |
| 302 | S32 ret; |
| 303 | |
| 304 | ret = DVDClose(&file->ps.fileInfo); |
| 305 | ret = DVDClose(&file->ps.fileInfo); |
| 306 | |
| 307 | if (!ret) |
| 308 | { |
| 309 | return 1; |
| 310 | } |
| 311 | |
| 312 | ps->flags = 0; |
| 313 | return 0; |
| 314 | } |
| 315 | |
| 316 | U32 iFileGetSize(tag_xFile* file) |
| 317 | { |
no test coverage detected