- Timestamp:
- Dec 23, 2018 3:19:41 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127702
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdrv.h
r76401 r76403 46 46 #include <VBox/vmm/mm.h> 47 47 #include <VBox/vmm/ftm.h> 48 #include <VBox/err.h>49 48 #include <iprt/stdarg.h> 50 49 -
trunk/src/VBox/Devices/Samples/DrvStorageFilter.cpp
r69500 r76403 23 23 #include <VBox/vmm/pdmdrv.h> 24 24 #include <VBox/vmm/pdmstorageifs.h> 25 #include <VBox/err.h> 26 #include <VBox/log.h> 25 27 #include <VBox/version.h> 26 #include <VBox/log.h>27 28 28 29 #include <iprt/uuid.h> -
trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h
r75926 r76403 31 31 #include <VBox/com/string.h> 32 32 #include <VBox/com/VirtualBox.h> 33 #include <VBox/err.h> /* VERR_GSTCTL_GUEST_ERROR */ 33 34 34 35 #include <map> -
trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp
r75926 r76403 35 35 #ifdef DEBUG 36 36 # include <iprt/file.h> 37 #endif /* DEBUG */37 #endif 38 38 #include <iprt/fs.h> 39 39 #include <iprt/rand.h> -
trunk/src/VBox/Main/testcase/tstGuestCtrlParseBuffer.cpp
r69500 r76403 16 16 */ 17 17 18 #define LOG_ENABLED 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 19 22 #define LOG_GROUP LOG_GROUP_MAIN 23 #include <VBox/err.h> 20 24 #include <VBox/log.h> 21 25 … … 32 36 #endif 33 37 38 /********************************************************************************************************************************* 39 * Defined Constants And Macros * 40 *********************************************************************************************************************************/ 34 41 #define STR_SIZE(a_sz) a_sz, sizeof(a_sz) 35 42 36 43 44 /********************************************************************************************************************************* 45 * Structures and Typedefs * 46 *********************************************************************************************************************************/ 37 47 typedef struct VBOXGUESTCTRL_BUFFER_VALUE 38 48 { … … 43 53 typedef std::map< RTCString, VBOXGUESTCTRL_BUFFER_VALUE >::const_iterator GuestBufferMapIterConst; 44 54 55 56 /********************************************************************************************************************************* 57 * Global Variables * 58 *********************************************************************************************************************************/ 45 59 char szUnterm1[] = { 'a', 's', 'd', 'f' }; 46 60 char szUnterm2[] = { 'f', 'o', 'o', '3', '=', 'b', 'a', 'r', '3' };
Note:
See TracChangeset
for help on using the changeset viewer.