Changeset 63561 in vbox for trunk/src/VBox/Runtime/common/dvm
- Timestamp:
- Aug 16, 2016 2:02:22 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110216
- Location:
- trunk/src/VBox/Runtime/common/dvm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dvm/dvmgpt.cpp
r62477 r63561 272 272 pThis->HdrRev1.u64LbaFirstPartition = RT_LE2H_U64(pThis->HdrRev1.u64LbaFirstPartition); 273 273 pThis->HdrRev1.u64LbaLastPartition = RT_LE2H_U64(pThis->HdrRev1.u64LbaLastPartition); 274 /** @todo :Disk UUID */274 /** @todo Disk UUID */ 275 275 pThis->HdrRev1.u64LbaPartitionEntries = RT_LE2H_U64(pThis->HdrRev1.u64LbaPartitionEntries); 276 276 pThis->HdrRev1.cPartitionEntries = RT_LE2H_U32(pThis->HdrRev1.cPartitionEntries); … … 292 292 { 293 293 /* Convert to host endianess. */ 294 /** @todo :Uuids */294 /** @todo Uuids */ 295 295 pThis->paGptEntries[i].u64LbaFirst = RT_LE2H_U64(pThis->paGptEntries[i].u64LbaFirst); 296 296 pThis->paGptEntries[i].u64LbaLast = RT_LE2H_U64(pThis->paGptEntries[i].u64LbaLast); -
trunk/src/VBox/Runtime/common/dvm/dvmmbr.cpp
r62477 r63561 234 234 { 235 235 NOREF(hVolMgrFmt); 236 return 4; /** @todo :Add support for EBR? */236 return 4; /** @todo Add support for EBR? */ 237 237 } 238 238 -
trunk/src/VBox/Runtime/common/dvm/dvmvfs.cpp
r62477 r63561 201 201 { 202 202 NOREF(pvThis); 203 return VINF_SUCCESS; /* @todo:Implement missing DVM API. */203 return VINF_SUCCESS; /** @todo Implement missing DVM API. */ 204 204 } 205 205
Note:
See TracChangeset
for help on using the changeset viewer.