Changeset 27708 in vbox for trunk/src/VBox/GuestHost
- Timestamp:
- Mar 25, 2010 2:36:56 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/include/cr_server.h
r21990 r27708 28 28 #define CR_MAX_WINDOWS 100 29 29 #define CR_MAX_CLIENTS 20 30 31 /*@todo must match MaxGuestMonitors from SchemaDefs.h*/ 32 #define CR_MAX_GUEST_MONITORS 8 30 33 31 34 typedef struct { … … 62 65 63 66 int spuWindow; /**< the SPU's corresponding window ID */ 67 68 int screenId; 64 69 } CRMuralInfo; 65 70 … … 104 109 105 110 typedef struct { 111 int32_t x, y; 112 uint32_t w, h; 113 uint64_t winID; 114 } CRScreenInfo; 115 116 typedef struct { 106 117 unsigned short tcpip_port; 118 119 CRScreenInfo screen[CR_MAX_GUEST_MONITORS]; 120 int screenCount; 107 121 108 122 int numClients; … … 221 235 extern DECLEXPORT(int32_t) crVBoxServerSaveState(PSSMHANDLE pSSM); 222 236 extern DECLEXPORT(int32_t) crVBoxServerLoadState(PSSMHANDLE pSSM, uint32_t version); 237 238 extern DECLEXPORT(int32_t) crVBoxServerSetScreenCount(int sCount); 239 extern DECLEXPORT(int32_t) crVBoxServerUnmapScreen(int sIndex); 240 extern DECLEXPORT(int32_t) crVBoxServerMapScreen(int sIndex, int32_t x, int32_t y, uint32_t w, uint32_t h, uint64_t winID); 241 242 extern DECLEXPORT(int32_t) crVBoxServerSetRootVisibleRegion(GLint cRects, GLint *pRects); 223 243 #ifdef __cplusplus 224 244 }
Note:
See TracChangeset
for help on using the changeset viewer.