Changeset 67961 in vbox
- Timestamp:
- Jul 14, 2017 9:27:42 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 116961
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Makefile.kmk
r67905 r67961 85 85 Storage/VSCSI/VSCSIVpdPagePool.cpp \ 86 86 build/VBoxDDUDeps.cpp 87 88 ifdef VBOX_WITH_VSCSI_SSC 89 VBoxDDU_SOURCES += Storage/VSCSI/VSCSILunSsc.cpp 90 VBoxDDU_DEFS += VBOX_WITH_VSCSI_SSC 91 endif 87 92 ifdef VBOX_WITH_USB 88 93 VBoxDDU_INCS.os2 += \ -
trunk/src/VBox/Devices/Storage/VSCSI/VSCSILun.cpp
r67960 r67961 5 5 6 6 /* 7 * Copyright (C) 2006-201 6Oracle Corporation7 * Copyright (C) 2006-2017 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 29 29 /** MMC descriptor */ 30 30 extern VSCSILUNDESC g_VScsiLunTypeMmc; 31 /** SSC descriptor */ 32 extern VSCSILUNDESC g_VScsiLunTypeSsc; 31 33 32 34 /** … … 37 39 &g_VScsiLunTypeSbc, 38 40 &g_VScsiLunTypeMmc, 41 #ifdef VBOX_WITH_VSCSI_SSC 42 &g_VScsiLunTypeSsc, 43 #endif 39 44 }; 40 45
Note:
See TracChangeset
for help on using the changeset viewer.