Changeset 37024 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- May 10, 2011 11:23:44 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/dvm.h
r36816 r37024 233 233 * @param pDisk The disk descriptor. 234 234 */ 235 DECLINLINE(uint64_t) dvmDiskGetSectors(PCRTDVMDISK pDisk)235 DECLINLINE(uint64_t) rtDvmDiskGetSectors(PCRTDVMDISK pDisk) 236 236 { 237 237 return pDisk->cbDisk / pDisk->cbSector; … … 247 247 * @param cbRead How much to read. 248 248 */ 249 DECLINLINE(int) dvmDiskRead(PCRTDVMDISK pDisk, uint64_t off, void *pvBuf, size_t cbRead)249 DECLINLINE(int) rtDvmDiskRead(PCRTDVMDISK pDisk, uint64_t off, void *pvBuf, size_t cbRead) 250 250 { 251 251 AssertPtrReturn(pDisk, VERR_INVALID_POINTER); … … 266 266 * @param cbWrite How much to write. 267 267 */ 268 DECLINLINE(int) dvmDiskWrite(PCRTDVMDISK pDisk, uint64_t off, const void *pvBuf, size_t cbWrite)268 DECLINLINE(int) rtDvmDiskWrite(PCRTDVMDISK pDisk, uint64_t off, const void *pvBuf, size_t cbWrite) 269 269 { 270 270 AssertPtrReturn(pDisk, VERR_INVALID_POINTER);
Note:
See TracChangeset
for help on using the changeset viewer.