| 282 | } |
| 283 | |
| 284 | IFILE_READSECTOR_STATUS iFileReadAsyncStatus(S32 key, S32* amtToFar) |
| 285 | { |
| 286 | if (key != file_queue[key & 0x3].asynckey) |
| 287 | { |
| 288 | return IFILE_RDSTAT_EXPIRED; |
| 289 | } |
| 290 | |
| 291 | if (amtToFar) |
| 292 | { |
| 293 | *amtToFar = file_queue[key & 0x3].offset; |
| 294 | } |
| 295 | |
| 296 | return file_queue[key & 0x3].stat; |
| 297 | } |
| 298 | |
| 299 | U32 iFileClose(tag_xFile* file) |
| 300 | { |
no outgoing calls
no test coverage detected