Changeset 76389 in vbox for trunk/src/VBox/HostServices
- Timestamp:
- Dec 23, 2018 1:39:48 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127688
- Location:
- trunk/src/VBox/HostServices
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/DragAndDrop/service.cpp
r75969 r76389 25 25 * Header Files * 26 26 *********************************************************************************************************************************/ 27 #ifdef LOG_GROUP28 #undef LOG_GROUP29 #endif30 27 #define LOG_GROUP LOG_GROUP_GUEST_DND 31 32 #include <algorithm>33 #include <list>34 #include <map>35 36 28 #include <VBox/GuestHost/DragAndDrop.h> 37 29 #include <VBox/GuestHost/DragAndDropDefs.h> 38 30 #include <VBox/HostServices/Service.h> 39 31 #include <VBox/HostServices/DragAndDropSvc.h> 32 33 #include <VBox/err.h> 34 35 #include <algorithm> 36 #include <list> 37 #include <map> 40 38 41 39 #include "dndmanager.h" -
trunk/src/VBox/HostServices/GuestProperties/service.cpp
r75992 r76389 49 49 #include <iprt/cpp/utils.h> 50 50 #include <iprt/cpp/ministring.h> 51 #include < iprt/err.h>51 #include <VBox/err.h> 52 52 #include <iprt/mem.h> 53 53 #include <iprt/req.h> -
trunk/src/VBox/HostServices/GuestProperties/testcase/tstGuestPropSvc.cpp
r75749 r76389 22 22 *********************************************************************************************************************************/ 23 23 #include <VBox/HostServices/GuestPropertySvc.h> 24 #include <VBox/err.h> 24 25 #include <iprt/test.h> 25 26 #include <iprt/time.h> -
trunk/src/VBox/HostServices/SharedClipboard/service.cpp
r75969 r76389 82 82 #include <iprt/assert.h> 83 83 #include <iprt/critsect.h> 84 #include <VBox/err.h> 84 85 #include <VBox/vmm/ssm.h> 85 86 -
trunk/src/VBox/HostServices/SharedClipboard/x11-clipboard.cpp
r75498 r76389 30 30 #include <VBox/GuestHost/SharedClipboard.h> 31 31 #include <VBox/HostServices/VBoxClipboardSvc.h> 32 #include <VBox/err.h> 32 33 33 34 #include "VBoxClipboard.h" 34 35 36 37 /********************************************************************************************************************************* 38 * Structures and Typedefs * 39 *********************************************************************************************************************************/ 35 40 struct _VBOXCLIPBOARDREQFROMVBOX; 36 41 typedef struct _VBOXCLIPBOARDREQFROMVBOX VBOXCLIPBOARDREQFROMVBOX; … … 60 65 bool fShuttingDown; 61 66 }; 67 68 62 69 63 70 /** -
trunk/src/VBox/HostServices/SharedOpenGL/crserver/crservice.cpp
r75969 r76389 16 16 */ 17 17 18 /********************************************************************************************************************************* 19 * Header Files * 20 *********************************************************************************************************************************/ 21 #define LOG_GROUP LOG_GROUP_SHARED_CROPENGL 22 18 23 #define __STDC_CONSTANT_MACROS /* needed for a definition in iprt/string.h */ 19 20 #define LOG_GROUP LOG_GROUP_SHARED_CROPENGL21 24 22 25 #include <iprt/assert.h> … … 29 32 #include <iprt/thread.h> 30 33 34 #include <VBox/err.h> 31 35 #include <VBox/hgcmsvc.h> 32 36 #include <VBox/log.h> … … 42 46 #include "cr_server.h" 43 47 48 #ifndef RT_OS_WINDOWS 49 # define DWORD int 50 # define WINAPI 51 #endif 52 53 54 /********************************************************************************************************************************* 55 * Global Variables * 56 *********************************************************************************************************************************/ 44 57 PVBOXHGCMSVCHELPERS g_pHelpers; 45 58 static IConsole* g_pConsole = NULL; … … 48 61 static uint32_t g_u32fCrHgcmDisabled = 0; 49 62 50 #ifndef RT_OS_WINDOWS 51 # define DWORD int 52 # define WINAPI 53 #endif 54 55 static const char* gszVBoxOGLSSMMagic = "***OpenGL state data***"; 63 static const char *gszVBoxOGLSSMMagic = "***OpenGL state data***"; 56 64 57 65 /* Used to process guest calls exceeding maximum allowed HGCM call size in a sequence of smaller calls */
Note:
See TracChangeset
for help on using the changeset viewer.