Changeset 76366 in vbox for trunk/src/VBox
- Timestamp:
- Dec 22, 2018 2:16:26 AM (6 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxAutostart/VBoxAutostartStart.cpp
r69500 r76366 23 23 #include <VBox/com/errorprint.h> 24 24 25 #include <iprt/err.h> 26 #include <iprt/log.h> 25 27 #include <iprt/message.h> 28 #include <iprt/stream.h> 26 29 #include <iprt/thread.h> 27 #include <iprt/stream.h>28 #include <iprt/log.h>29 30 30 31 #include <algorithm> 31 32 #include <list> 32 #include <string>33 33 34 34 #include "VBoxAutostart.h" -
trunk/src/VBox/Frontends/VBoxBugReport/VBoxBugReport.cpp
r69753 r76366 20 20 #include <VBox/com/string.h> 21 21 #include <VBox/com/array.h> 22 //#include <VBox/com/Guid.h>23 22 #include <VBox/com/ErrorInfo.h> 24 23 #include <VBox/com/errorprint.h> … … 28 27 29 28 #include <iprt/buildconfig.h> 29 #include <iprt/err.h> 30 30 #include <iprt/env.h> 31 31 #include <iprt/file.h> -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
r76192 r76366 35 35 #endif /* !VBOX_ONLY_DOCS */ 36 36 37 #include <iprt/err.h> 37 38 #include <iprt/stream.h> 38 39 #include <iprt/getopt.h> -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageBandwidthControl.cpp
r69500 r76366 28 28 #include <VBox/com/VirtualBox.h> 29 29 30 #include <iprt/err.h> 30 31 #include <iprt/path.h> 31 32 #include <iprt/param.h> -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageDHCPServer.cpp
r75945 r76366 29 29 30 30 #include <iprt/cidr.h> 31 #include <iprt/err.h> 31 32 #include <iprt/param.h> 32 33 #include <iprt/path.h> -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHostonly.cpp
r69500 r76366 29 29 30 30 #include <iprt/cidr.h> 31 #include <iprt/err.h> 31 32 #include <iprt/param.h> 32 33 #include <iprt/path.h> -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r75926 r76366 37 37 #include <VBox/log.h> 38 38 #include <VBox/version.h> 39 #include <iprt/err.h> 39 40 #include <iprt/stream.h> 40 41 #include <iprt/time.h> -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r75918 r76366 32 32 33 33 #include <VBox/log.h> 34 #include <iprt/err.h> 34 35 #include <iprt/stream.h> 35 36 #include <iprt/string.h> -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp
r75926 r76366 30 30 #include <iprt/cidr.h> 31 31 #include <iprt/ctype.h> 32 #include <iprt/err.h> 32 33 #include <iprt/file.h> 33 34 #include <iprt/param.h> -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageSnapshot.cpp
r69500 r76366 28 28 #include <VBox/com/VirtualBox.h> 29 29 30 #include <iprt/err.h> 31 #include <iprt/getopt.h> 30 32 #include <iprt/stream.h> 31 #include <iprt/getopt.h>32 33 #include <iprt/time.h> 33 34 -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageStorageController.cpp
r69693 r76366 28 28 #include <VBox/com/VirtualBox.h> 29 29 30 #include <iprt/err.h> 30 31 #include <iprt/path.h> 31 32 #include <iprt/param.h> -
trunk/src/VBox/Frontends/VirtualBox/src/net/UIUpdateManager.cpp
r75668 r76366 47 47 48 48 /* Other VBox includes: */ 49 # include <iprt/err.h> 49 50 # include <iprt/path.h> 50 51 # include <iprt/system.h> -
trunk/src/VBox/Main/src-all/EventImpl.cpp
r72847 r76366 58 58 #include "Logging.h" 59 59 60 #include <iprt/asm.h> 61 #include <iprt/critsect.h> 62 #include <iprt/err.h> 60 63 #include <iprt/semaphore.h> 61 #include <iprt/critsect.h>62 #include <iprt/asm.h>63 64 #include <iprt/time.h> 64 65 -
trunk/src/VBox/Main/src-all/ThreadTask.cpp
r71287 r76366 1 /* $Id$ */ 1 2 /** @file 2 3 * Implementation of ThreadTask … … 15 16 */ 16 17 18 #include <iprt/err.h> 17 19 #include <iprt/thread.h> 18 20 -
trunk/src/VBox/Main/src-server/CertificateImpl.cpp
r72980 r76366 16 16 */ 17 17 18 #include <iprt/err.h> 18 19 #include <iprt/path.h> 19 20 #include <iprt/cpp/utils.h> -
trunk/src/VBox/Main/src-server/DataStreamImpl.cpp
r74829 r76366 25 25 #include "AutoCaller.h" 26 26 #include "Logging.h" 27 28 29 /********************************************************************************************************************************* 30 * Structures and Typedefs * 31 *********************************************************************************************************************************/ 27 #include "iprt/err.h" 32 28 33 29 -
trunk/src/VBox/Main/src-server/HostDnsService.h
r72547 r76366 20 20 #include "VirtualBoxBase.h" 21 21 22 #include <iprt/cdefs.h> 23 #include <iprt/types.h> 22 #include <iprt/err.h> /* VERR_IGNORED */ 24 23 #include <iprt/cpp/lock.h> 25 24 -
trunk/src/VBox/Main/xml/Settings.cpp
r75396 r76366 72 72 #include "VBox/com/string.h" 73 73 #include "VBox/settings.h" 74 #include <iprt/base64.h> 75 #include <iprt/cpp/lock.h> 74 76 #include <iprt/cpp/xml.h> 77 #include <iprt/ctype.h> 78 #include <iprt/err.h> 79 #include <iprt/file.h> 80 #include <iprt/ldr.h> 81 #include <iprt/process.h> 75 82 #include <iprt/stream.h> 76 #include <iprt/ctype.h>77 #include <iprt/file.h>78 #include <iprt/process.h>79 #include <iprt/ldr.h>80 #include <iprt/base64.h>81 83 #include <iprt/uri.h> 82 #include <iprt/cpp/lock.h>83 84 84 85 // generated header
Note:
See TracChangeset
for help on using the changeset viewer.