Changeset 40282 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Feb 28, 2012 9:02:40 PM (13 years ago)
- Location:
- trunk/src/VBox/Devices/Storage
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r40280 r40282 8253 8253 PDM_DEVREG_CLASS_STORAGE, 8254 8254 /* cMaxInstances */ 8255 ~0 ,8255 ~0U, 8256 8256 /* cbInstance */ 8257 8257 sizeof(AHCI), -
trunk/src/VBox/Devices/Storage/DevBusLogic.cpp
r40280 r40282 3230 3230 PDM_DEVREG_CLASS_STORAGE, 3231 3231 /* cMaxInstances */ 3232 ~0 ,3232 ~0U, 3233 3233 /* cbInstance */ 3234 3234 sizeof(BUSLOGIC), -
trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.cpp
r40280 r40282 5294 5294 PDM_DEVREG_CLASS_STORAGE, 5295 5295 /* cMaxInstances */ 5296 ~0 ,5296 ~0U, 5297 5297 /* cbInstance */ 5298 5298 sizeof(LSILOGICSCSI), … … 5350 5350 PDM_DEVREG_CLASS_STORAGE, 5351 5351 /* cMaxInstances */ 5352 ~0 ,5352 ~0U, 5353 5353 /* cbInstance */ 5354 5354 sizeof(LSILOGICSCSI), -
trunk/src/VBox/Devices/Storage/DrvBlock.cpp
r38878 r40282 1034 1034 PDM_DRVREG_CLASS_BLOCK, 1035 1035 /* cMaxInstances */ 1036 ~0 ,1036 ~0U, 1037 1037 /* cbInstance */ 1038 1038 sizeof(DRVBLOCK), -
trunk/src/VBox/Devices/Storage/DrvDiskIntegrity.cpp
r39518 r40282 1388 1388 PDM_DRVREG_CLASS_BLOCK, 1389 1389 /* cMaxInstances */ 1390 ~0 ,1390 ~0U, 1391 1391 /* cbInstance */ 1392 1392 sizeof(DRVDISKINTEGRITY), -
trunk/src/VBox/Devices/Storage/DrvHostDVD.cpp
r39731 r40282 854 854 PDM_DRVREG_CLASS_BLOCK, 855 855 /* cMaxInstances */ 856 ~0 ,856 ~0U, 857 857 /* cbInstance */ 858 858 sizeof(DRVHOSTBASE), -
trunk/src/VBox/Devices/Storage/DrvHostFloppy.cpp
r38566 r40282 250 250 PDM_DRVREG_CLASS_BLOCK, 251 251 /* cMaxInstances */ 252 ~0 ,252 ~0U, 253 253 /* cbInstance */ 254 254 sizeof(DRVHOSTFLOPPY), -
trunk/src/VBox/Devices/Storage/DrvMediaISO.cpp
r39855 r40282 287 287 PDM_DRVREG_CLASS_MEDIA, 288 288 /* cMaxInstances */ 289 ~0 ,289 ~0U, 290 290 /* cbInstance */ 291 291 sizeof(DRVMEDIAISO), -
trunk/src/VBox/Devices/Storage/DrvRawImage.cpp
r39855 r40282 339 339 PDM_DRVREG_CLASS_MEDIA, 340 340 /* cMaxInstances */ 341 ~0 ,341 ~0U, 342 342 /* cbInstance */ 343 343 sizeof(DRVRAWIMAGE), -
trunk/src/VBox/Devices/Storage/DrvSCSI.cpp
r39764 r40282 972 972 PDM_DRVREG_CLASS_SCSI, 973 973 /* cMaxInstances */ 974 ~0 ,974 ~0U, 975 975 /* cbInstance */ 976 976 sizeof(DRVSCSI), -
trunk/src/VBox/Devices/Storage/DrvSCSIHost.cpp
r39498 r40282 513 513 PDM_DRVREG_CLASS_SCSI, 514 514 /* cMaxInstances */ 515 ~0 ,515 ~0U, 516 516 /* cbInstance */ 517 517 sizeof(DRVSCSIHOST), -
trunk/src/VBox/Devices/Storage/DrvVD.cpp
r39855 r40282 2813 2813 PDM_DRVREG_CLASS_MEDIA, 2814 2814 /* cMaxInstances */ 2815 ~0 ,2815 ~0U, 2816 2816 /* cbInstance */ 2817 2817 sizeof(VBOXDISK), -
trunk/src/VBox/Devices/Storage/UsbMsd.cpp
r37795 r40282 1605 1605 0, 1606 1606 /* cMaxInstances */ 1607 ~0 ,1607 ~0U, 1608 1608 /* cbInstance */ 1609 1609 sizeof(USBMSD),
Note:
See TracChangeset
for help on using the changeset viewer.