| 1228 | } |
| 1229 | |
| 1230 | bool FileSystemManager::isVolumeADisc( QString volume ) |
| 1231 | { |
| 1232 | if (!exists(volume)) |
| 1233 | return false; |
| 1234 | |
| 1235 | unsigned int driveType = GetDriveType((LPCTSTR) volume.utf16()); |
| 1236 | return (driveType == DRIVE_CDROM); |
| 1237 | } |
| 1238 | |
| 1239 | void FileSystemManager::onPowerSuspend() |
| 1240 | { |
no test coverage detected