| 458 | } |
| 459 | |
| 460 | Result archiveUnmountAll(void) |
| 461 | { |
| 462 | u32 total = sizeof(archive_devices) / sizeof(archive_fsdevice); |
| 463 | |
| 464 | if(!archive_initialized) return 0; |
| 465 | |
| 466 | for(u32 i = 0; i < total; i++) |
| 467 | { |
| 468 | _archiveUnmountDeviceStruct(&archive_devices[i]); |
| 469 | } |
| 470 | |
| 471 | archive_initialized = false; |
| 472 | |
| 473 | return 0; |
| 474 | } |
| 475 | |
| 476 | /*! Open a file |
| 477 | * |
no test coverage detected