Changeset 6204 in vbox
- Timestamp:
- Dec 28, 2007 3:11:55 PM (17 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Makefile.kmk
r6173 r6204 70 70 Storage/VDICore.cpp \ 71 71 Storage/VmdkHDDCore.cpp \ 72 Storage/VHDHDDCore.cpp \73 72 VBoxDDUDeps.cpp 73 ifndef VBOX_OSE 74 VBoxDDU_SOURCES += \ 75 Storage/VHDHDDCore.cpp 76 endif 74 77 ifdef VBOX_WITH_USB 75 78 VBoxDDU_SOURCES.win = \ -
trunk/src/VBox/Devices/Storage/VBoxHDD-new.cpp
r6203 r6204 118 118 119 119 extern VBOXHDDBACKEND g_VmdkBackend; 120 #ifndef VBOX_OSE 120 121 extern VBOXHDDBACKEND g_VhdBackend; 122 #endif 121 123 122 124 static const VBOXHDDBACKENDENTRY aBackends[] = 123 125 { 124 126 { "VMDK", &g_VmdkBackend }, 127 #ifndef VBOX_OSE 125 128 { "VHD", &g_VhdBackend}, 129 #endif 126 130 { NULL, NULL } 127 131 };
Note:
See TracChangeset
for help on using the changeset viewer.