Changeset 12806 in vbox for trunk/include
- Timestamp:
- Sep 29, 2008 3:02:22 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 37158
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/VBoxCrOpenGLSvc.h
r12577 r12806 39 39 #define SHCRGL_HOST_FN_SET_FRAMEBUFFER (1) 40 40 /* crOpenGL guest functions */ 41 #define SHCRGL_GUEST_FN_WRITE (2) 42 #define SHCRGL_GUEST_FN_READ (3) 41 #define SHCRGL_GUEST_FN_WRITE (2) 42 #define SHCRGL_GUEST_FN_READ (3) 43 #define SHCRGL_GUEST_FN_WRITE_READ (4) 43 44 44 45 /* Parameters count */ 45 46 #define SHCRGL_CPARMS_SET_FRAMEBUFFER (1) 46 #define SHCRGL_CPARMS_WRITE (1) 47 #define SHCRGL_CPARMS_READ (2) 47 #define SHCRGL_CPARMS_WRITE (1) 48 #define SHCRGL_CPARMS_READ (2) 49 #define SHCRGL_CPARMS_WRITE_READ (3) 48 50 49 51 /** … … 51 53 */ 52 54 53 /** GUEST_FN_ READParameters structure. */55 /** GUEST_FN_WRITE Parameters structure. */ 54 56 typedef struct 55 57 { … … 62 64 } CRVBOXHGCMWRITE; 63 65 64 /** GUEST_FN_ WRITEParameters structure. */66 /** GUEST_FN_READ Parameters structure. */ 65 67 typedef struct 66 68 { … … 79 81 } CRVBOXHGCMREAD; 80 82 83 /** GUEST_FN_WRITE_READ Parameters structure. */ 84 typedef struct 85 { 86 VBoxGuestHGCMCallInfo hdr; 87 88 /** pointer, in 89 * Data buffer 90 */ 91 HGCMFunctionParameter pBuffer; 92 93 /** pointer, out 94 * Writeback buffer 95 */ 96 HGCMFunctionParameter pWriteback; 97 98 /** 32bit, out 99 * Count of bytes written to writeback buffer 100 */ 101 HGCMFunctionParameter cbWriteback; 102 103 } CRVBOXHGCMWRITEREAD; 104 81 105 #endif
Note:
See TracChangeset
for help on using the changeset viewer.