| 448 | } |
| 449 | |
| 450 | Result archiveUnmount(const char *deviceName) |
| 451 | { |
| 452 | archive_fsdevice *device = archiveFindDevice(deviceName); |
| 453 | |
| 454 | if(device==NULL) |
| 455 | return -1; |
| 456 | |
| 457 | return _archiveUnmountDeviceStruct(device); |
| 458 | } |
| 459 | |
| 460 | Result archiveUnmountAll(void) |
| 461 | { |
nothing calls this directly
no test coverage detected