Changeset 7409 in vbox for trunk/include/VBox
- Timestamp:
- Mar 10, 2008 2:50:08 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28842
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxDev.h
r5999 r7409 61 61 /** the guest supports mapping guest to host windows */ 62 62 #define VMMDEV_GUEST_SUPPORTS_GUEST_HOST_WINDOW_MAPPING RT_BIT(1) 63 /** 64 * the guest graphical additions are active - used for fast activation 65 * and deactivation of certain graphical operations. 66 * The legacy VMMDevReq_ReportGuestCapabilities request sets this 67 * automatically, but VMMDevReq_SetGuestCapabilities does not. */ 68 #define VMMDEV_GUEST_SUPPORTS_GRAPHICS RT_BIT(2) 63 69 /** @} */ 64 70 -
trunk/include/VBox/VBoxGuest.h
r7233 r7409 149 149 VMMDevReq_GetDisplayChangeRequest2 = 54, 150 150 VMMDevReq_ReportGuestCapabilities = 55, 151 VMMDevReq_SetGuestCapabilities = 56, 151 152 #ifdef VBOX_HGCM 152 153 VMMDevReq_HGCMConnect = 60, … … 286 287 uint32_t caps; 287 288 } VMMDevReqGuestCapabilities; 289 290 /** guest capabilites structure */ 291 typedef struct 292 { 293 /** header */ 294 VMMDevRequestHeader header; 295 /** mask of capabilities to be added */ 296 uint32_t u32OrMask; 297 /** mask of capabilities to be removed */ 298 uint32_t u32NotMask; 299 } VMMDevReqGuestCapabilities2; 288 300 289 301 /** idle request structure */
Note:
See TracChangeset
for help on using the changeset viewer.