Changeset 76389 in vbox for trunk/src/VBox/HostServices/SharedOpenGL
- Timestamp:
- Dec 23, 2018 1:39:48 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.