Changeset 47036 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Jul 8, 2013 12:26:47 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87069
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmifs.h
r46933 r47036 894 894 /** 2.88MB 3 1/2" floppy drive. */ 895 895 PDMBLOCKTYPE_FLOPPY_2_88, 896 /** Fake drive that can take up to 15.6 MB images. 897 * C=255, H=2, S=63. */ 898 PDMBLOCKTYPE_FLOPPY_FAKE_15_6, 899 /** Fake drive that can take up to 63.5 MB images. 900 * C=255, H=2, S=255. */ 901 PDMBLOCKTYPE_FLOPPY_FAKE_63_5, 896 902 /** CDROM drive. */ 897 903 PDMBLOCKTYPE_CDROM, … … 902 908 } PDMBLOCKTYPE; 903 909 910 /** Check if the given block type is a floppy. */ 911 #define PDMBLOCKTYPE_IS_FLOPPY(a_enmType) ( (a_enmType) >= PDMBLOCKTYPE_FLOPPY_360 && (a_enmType) <= PDMBLOCKTYPE_FLOPPY_2_88 ) 904 912 905 913 /**
Note:
See TracChangeset
for help on using the changeset viewer.