| 346 | } |
| 347 | |
| 348 | void deleteTask(void *arg) |
| 349 | { |
| 350 | s32 chan = (s32)arg; |
| 351 | SaveFile *pSaveFile = msaCardData[chan].mSaveFile; |
| 352 | |
| 353 | if (pSaveFile->getAccessWay() == 1) |
| 354 | msaCardData[chan].mCardStatus = CARDDelete(chan, pSaveFile->getFileName()); |
| 355 | else |
| 356 | msaCardData[chan].mCardStatus = CARDFastDelete(chan, pSaveFile->getFileNo()); |
| 357 | |
| 358 | msaCardData[chan].mTaskStatus = mcTaskDone; |
| 359 | } |
| 360 | |
| 361 | s32 closeFile(s32 chan) |
| 362 | { |
nothing calls this directly
no test coverage detected