Changeset 77233 in vbox for trunk/src/VBox
- Timestamp:
- Feb 9, 2019 1:57:33 PM (6 years ago)
- Location:
- trunk/src/VBox/Runtime/r3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/fs.cpp
r76553 r77233 212 212 case RTFSTYPE_FAT: return "fat"; 213 213 case RTFSTYPE_EXFAT: return "exfat"; 214 case RTFSTYPE_REFS: return "refs"; 214 215 215 216 case RTFSTYPE_ZFS: return "zfs"; … … 218 219 219 220 case RTFSTYPE_HFS: return "hfs"; 221 case RTFSTYPE_APFS: return "apfs"; 220 222 case RTFSTYPE_AUTOFS: return "autofs"; 221 223 case RTFSTYPE_DEVFS: return "devfs"; -
trunk/src/VBox/Runtime/r3/nt/fs-nt.cpp
r77231 r77233 225 225 else if (IS_FS("HPFS")) 226 226 *penmType = RTFSTYPE_HPFS; 227 else if (IS_FS("ReFS")) /** @todo verify ReFS signature. */ 228 *penmType = RTFSTYPE_REFS; 227 229 else if (IS_FS("VBoxSharedFolderFS")) 228 230 *penmType = RTFSTYPE_VBOXSHF; -
trunk/src/VBox/Runtime/r3/posix/fs-posix.cpp
r76553 r77233 295 295 if (!strcmp("hfs", statfsBuf.f_fstypename)) 296 296 *penmType = RTFSTYPE_HFS; 297 else if (!strcmp("apfs", statfsBuf.f_fstypename)) /** @todo verify apfs signature. */ 298 *penmType = RTFSTYPE_APFS; 297 299 else if ( !strcmp("fat", statfsBuf.f_fstypename) 298 300 || !strcmp("msdos", statfsBuf.f_fstypename))
Note:
See TracChangeset
for help on using the changeset viewer.