Changeset 1717 in vbox
- Timestamp:
- Mar 27, 2007 11:09:57 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DrvHostRawDisk.cpp
r1708 r1717 37 37 #include <iprt/string.h> 38 38 39 #ifdef __WIN 32__39 #ifdef __WIN__ 40 40 #include <windows.h> 41 41 #include <winioctl.h> … … 45 45 #include <linux/hdreg.h> 46 46 #include <linux/fs.h> 47 #endif /* !__WIN 32__ && !__LINUX__ */47 #endif /* !__WIN__ && !__LINUX__ */ 48 48 49 49 #include "Builtins.h" … … 329 329 pThis->cSectors = 0; 330 330 pThis->enmTranslation = PDMBIOSTRANSLATION_AUTO; 331 #ifdef __WIN 32__331 #ifdef __WIN__ 332 332 DISK_GEOMETRY DriveGeo; 333 333 DWORD cbDriveGeo; … … 379 379 #else 380 380 /** @todo add further host OS geometry detection mechanisms. */ 381 AssertMsgFail ("Host disk support for this host is unimplemented.\n");381 AssertMsgFailed("Host disk support for this host is unimplemented.\n"); 382 382 rc = VERR_NOT_IMPLEMENTED; 383 383 #endif
Note:
See TracChangeset
for help on using the changeset viewer.