Searched defs:DriveGeo (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Runtime/r3/win/
H A Dfileio-win.cpp649 DISK_GEOMETRY DriveGeo; local
653 &DriveGeo, sizeof(DriveGeo), &cbDriveGeo, NULL))
655 if ( DriveGeo.MediaType == FixedMedia
656 || DriveGeo.MediaType == RemovableMedia)
658 *pcbSize = DriveGeo.Cylinders.QuadPart
659 * DriveGeo.TracksPerCylinder
660 * DriveGeo.SectorsPerTrack
661 * DriveGeo.BytesPerSector;
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxInternalManage.cpp1220 * added to Windows XP, so we have to use the available info from DriveGeo.
1227 DISK_GEOMETRY DriveGeo; local
1231 &DriveGeo, sizeof(DriveGeo), &cbDriveGeo, NULL))
1233 if ( DriveGeo.MediaType == FixedMedia
1234 || DriveGeo.MediaType == RemovableMedia)
1236 cbSize = DriveGeo.Cylinders.QuadPart
1237 * DriveGeo.TracksPerCylinder
1238 * DriveGeo.SectorsPerTrack
1239 * DriveGeo
[all...]

Completed in 36 milliseconds