Changeset 46656 in vbox for trunk/src/VBox/HostServices/SharedOpenGL
- Timestamp:
- Jun 19, 2013 12:49:56 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserver/crservice.cpp
r45942 r46656 19 19 #define __STDC_CONSTANT_MACROS /* needed for a definition in iprt/string.h */ 20 20 21 #ifdef RT_OS_WINDOWS 22 # include <iprt/alloc.h> 23 # include <iprt/string.h> 24 # include <iprt/assert.h> 25 # include <iprt/stream.h> 26 # include <VBox/vmm/ssm.h> 27 # include <VBox/hgcmsvc.h> 28 # include <VBox/HostServices/VBoxCrOpenGLSvc.h> 29 # include "cr_server.h" 30 # define LOG_GROUP LOG_GROUP_SHARED_CROPENGL 31 # include <VBox/log.h> 32 33 # include <VBox/com/com.h> 34 # include <VBox/com/string.h> 35 # include <VBox/com/array.h> 36 # include <VBox/com/Guid.h> 37 # include <VBox/com/ErrorInfo.h> 38 # include <VBox/com/EventQueue.h> 39 # include <VBox/com/VirtualBox.h> 40 # include <VBox/com/assert.h> 41 42 #else 43 # include <VBox/com/VirtualBox.h> 44 # include <iprt/assert.h> 45 # include <VBox/vmm/ssm.h> 46 # include <VBox/hgcmsvc.h> 47 # include <VBox/HostServices/VBoxCrOpenGLSvc.h> 48 49 # include "cr_server.h" 50 # define LOG_GROUP LOG_GROUP_SHARED_CROPENGL 51 # include <VBox/log.h> 52 # include <VBox/com/ErrorInfo.h> 53 #endif /* RT_OS_WINDOWS */ 54 21 #define LOG_GROUP LOG_GROUP_SHARED_CROPENGL 22 23 #include <iprt/assert.h> 24 #include <iprt/asm.h> 25 #include <iprt/critsect.h> 26 #include <iprt/mem.h> 27 #include <iprt/semaphore.h> 28 #include <iprt/stream.h> 29 #include <iprt/string.h> 30 #include <iprt/thread.h> 31 32 #include <VBox/hgcmsvc.h> 33 #include <VBox/log.h> 34 #include <VBox/com/ErrorInfo.h> 35 #include <VBox/com/VirtualBox.h> 55 36 #include <VBox/com/errorprint.h> 56 #include <iprt/thread.h> 57 #include <iprt/critsect.h> 58 #include <iprt/semaphore.h> 59 #include <iprt/asm.h> 37 #include <VBox/HostServices/VBoxCrOpenGLSvc.h> 38 #include <VBox/vmm/ssm.h> 60 39 61 40 #include "cr_mem.h" 41 #include "cr_server.h" 62 42 63 43 PVBOXHGCMSVCHELPERS g_pHelpers;
Note:
See TracChangeset
for help on using the changeset viewer.