Changeset 30440 in vbox for trunk/include/VBox
- Timestamp:
- Jun 24, 2010 6:51:20 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/VBoxCrOpenGLSvc.h
r28800 r30440 43 43 #define SHCRGL_GUEST_FN_WRITE_READ (4) 44 44 #define SHCRGL_GUEST_FN_SET_VERSION (6) 45 #define SHCRGL_GUEST_FN_INJECT (9) 45 46 46 47 /* Parameters count */ … … 53 54 #define SHCRGL_CPARMS_SET_VERSION (2) 54 55 #define SHCRGL_CPARMS_SCREEN_CHANGED (1) 56 #define SHCRGL_CPARMS_INJECT (2) 55 57 56 58 /** … … 125 127 } CRVBOXHGCMSETVERSION; 126 128 129 /** GUEST_FN_INJECT Parameters structure. */ 130 typedef struct 131 { 132 VBoxGuestHGCMCallInfo hdr; 133 134 /** 32bit, in 135 * ClientID to inject commands buffer for 136 */ 137 HGCMFunctionParameter u32ClientID; 138 /** pointer, in 139 * Data buffer 140 */ 141 HGCMFunctionParameter pBuffer; 142 } CRVBOXHGCMINJECT; 143 127 144 #endif
Note:
See TracChangeset
for help on using the changeset viewer.