- Timestamp:
- Feb 17, 2009 7:07:37 PM (16 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 15 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Makefile.kmk
r16627 r16873 81 81 endif 82 82 VBoxDDU_SOURCES = \ 83 Storage/VBoxHDD -new.cpp \83 Storage/VBoxHDD.cpp \ 84 84 Storage/VDIHDDCore.cpp \ 85 85 Storage/VHDHDDCore.cpp \ -
trunk/src/VBox/Devices/Storage/DrvVD.cpp
r15592 r16873 25 25 *******************************************************************************/ 26 26 #define LOG_GROUP LOG_GROUP_DRV_VD 27 #include <VBox/VBoxHDD -new.h>27 #include <VBox/VBoxHDD.h> 28 28 #include <VBox/pdmdrv.h> 29 29 #include <iprt/alloc.h> -
trunk/src/VBox/Devices/Storage/RawHDDCore.cpp
r15366 r16873 24 24 *******************************************************************************/ 25 25 #define LOG_GROUP LOG_GROUP_VD_RAW 26 #include "VBoxHDD- newInternal.h"26 #include "VBoxHDD-Internal.h" 27 27 #include <VBox/err.h> 28 28 -
trunk/src/VBox/Devices/Storage/VBoxHDD-Internal.h
r16822 r16873 19 19 */ 20 20 21 #ifndef __VBoxHDD_ newInternal_h__21 #ifndef __VBoxHDD_Internal_h__ 22 22 23 23 24 24 #include <VBox/pdm.h> 25 #include <VBox/VBoxHDD -new.h>25 #include <VBox/VBoxHDD.h> 26 26 27 27 -
trunk/src/VBox/Devices/Storage/VBoxHDD.cpp
r16822 r16873 24 24 *******************************************************************************/ 25 25 #define LOG_GROUP LOG_GROUP_VD 26 #include <VBox/VBoxHDD -new.h>26 #include <VBox/VBoxHDD.h> 27 27 #include <VBox/err.h> 28 28 #include <VBox/sup.h> … … 40 40 #include <iprt/param.h> 41 41 42 #include "VBoxHDD- newInternal.h"42 #include "VBoxHDD-Internal.h" 43 43 44 44 -
trunk/src/VBox/Devices/Storage/VDICore.h
r12639 r16873 29 29 #include <VBox/VBoxHDD.h> 30 30 #else /* VBOX_VDICORE_VD */ 31 #include <VBox/VBoxHDD -new.h>31 #include <VBox/VBoxHDD.h> 32 32 #endif /* VBOX_VDICORE_VD */ 33 33 #include <VBox/pdm.h> -
trunk/src/VBox/Devices/Storage/VDIHDDCore.cpp
r15786 r16873 23 23 *******************************************************************************/ 24 24 #define LOG_GROUP LOG_GROUP_VD_VDI 25 #include "VBoxHDD- newInternal.h"25 #include "VBoxHDD-Internal.h" 26 26 #define VBOX_VDICORE_VD /* Signal that the header is included from here. */ 27 27 #include "VDICore.h" -
trunk/src/VBox/Devices/Storage/VHDHDDCore.cpp
r15767 r16873 23 23 *******************************************************************************/ 24 24 #define LOG_GROUP LOG_GROUP_VD_VHD 25 #include "VBoxHDD- newInternal.h"25 #include "VBoxHDD-Internal.h" 26 26 #include <VBox/err.h> 27 27 -
trunk/src/VBox/Devices/Storage/VmdkHDDCore.cpp
r16871 r16873 24 24 *******************************************************************************/ 25 25 #define LOG_GROUP LOG_GROUP_VD_VMDK 26 #include "VBoxHDD- newInternal.h"26 #include "VBoxHDD-Internal.h" 27 27 #include <VBox/err.h> 28 28 -
trunk/src/VBox/Devices/Storage/testcase/tstVD-2.cpp
r14970 r16873 21 21 22 22 #include <VBox/err.h> 23 #include <VBox/VBoxHDD -new.h>23 #include <VBox/VBoxHDD.h> 24 24 #include <iprt/string.h> 25 25 #include <iprt/stream.h> -
trunk/src/VBox/Devices/Storage/testcase/tstVD.cpp
r15591 r16873 20 20 */ 21 21 22 #include <VBox/VBoxHDD -new.h>22 #include <VBox/VBoxHDD.h> 23 23 #include <VBox/err.h> 24 24 #include <VBox/log.h> -
trunk/src/VBox/Frontends/VBoxManage/VBoxInternalManage.cpp
r16867 r16873 37 37 #include <VBox/com/VirtualBox.h> 38 38 39 #include <VBox/VBoxHDD -new.h>39 #include <VBox/VBoxHDD.h> 40 40 #include <VBox/sup.h> 41 41 #include <VBox/err.h> -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageDisk.cpp
r16867 r16873 36 36 #include <iprt/string.h> 37 37 #include <VBox/log.h> 38 #include <VBox/VBoxHDD -new.h>38 #include <VBox/VBoxHDD.h> 39 39 40 40 #include "VBoxManage.h" … … 188 188 } 189 189 190 #if 0 /* disabled until disk shrinking is implemented based on VBoxHDD -new*/190 #if 0 /* disabled until disk shrinking is implemented based on VBoxHDD */ 191 191 static DECLCALLBACK(int) hardDiskProgressCallback(PVM pVM, unsigned uPercent, void *pvUser) 192 192 { -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp
r16867 r16873 22 22 23 23 #include "VBoxGlobal.h" 24 #include <VBox/VBoxHDD -new.h>24 #include <VBox/VBoxHDD.h> 25 25 26 26 #include "VBoxDefs.h" -
trunk/src/VBox/Main/HardDiskFormatImpl.cpp
r15649 r16873 25 25 #include "Logging.h" 26 26 27 #include <VBox/VBoxHDD -new.h>27 #include <VBox/VBoxHDD.h> 28 28 29 29 // constructor / destructor -
trunk/src/VBox/Main/VirtualBoxImpl.cpp
r16867 r16873 36 36 #include <VBox/err.h> 37 37 #include <VBox/param.h> 38 #include <VBox/VBoxHDD -new.h>38 #include <VBox/VBoxHDD.h> 39 39 #include <VBox/settings.h> 40 40 #include <VBox/version.h> -
trunk/src/VBox/Main/include/HardDiskImpl.h
r16867 r16873 33 33 #include <VBox/com/SupportErrorInfo.h> 34 34 35 #include <VBox/VBoxHDD -new.h>35 #include <VBox/VBoxHDD.h> 36 36 37 37 #include <map>
Note:
See TracChangeset
for help on using the changeset viewer.