Changeset 8425 in vbox for trunk/include
- Timestamp:
- Apr 28, 2008 3:03:37 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxGuest.h
r8398 r8425 158 158 VMMDevReq_ReportGuestCapabilities = 55, 159 159 VMMDevReq_SetGuestCapabilities = 56, 160 VMMDevReq_SetMaxGuestResolution = 57,161 160 #ifdef VBOX_HGCM 162 161 VMMDevReq_HGCMConnect = 60, … … 288 287 } VMMDevReqHostVersion; 289 288 290 /** old guest capabilites structure (ReportGuestCapabilities)*/289 /** guest capabilites structure */ 291 290 typedef struct 292 291 { … … 297 296 } VMMDevReqGuestCapabilities; 298 297 299 /** new guest capabilites structure (SetGuestCapabilities)*/298 /** guest capabilites structure */ 300 299 typedef struct 301 300 { … … 307 306 uint32_t u32NotMask; 308 307 } VMMDevReqGuestCapabilities2; 309 310 /** Report the maximum possible guest resolution */311 typedef struct312 {313 /** header */314 VMMDevRequestHeader header;315 /** Maximum width */316 uint32_t u32MaxWidth;317 /** Maximum height */318 uint32_t u32MaxHeight;319 } VMMDevReqGuestResolution;320 308 321 309 /** idle request structure */ … … 1277 1265 case VMMDevReq_SetGuestCapabilities: 1278 1266 return sizeof(VMMDevReqGuestCapabilities2); 1279 case VMMDevReq_SetMaxGuestResolution:1280 return sizeof(VMMDevReqGuestResolution);1281 1267 #ifdef VBOX_HGCM 1282 1268 case VMMDevReq_HGCMConnect: … … 1464 1450 /** @name Display 1465 1451 * @{ */ 1466 VBGLR3DECL(int) VbglR3GetLastDisplayChangeRequest(uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits, uint32_t *piDisplay);1452 VBGLR3DECL(int) VbglR3GetLastDisplayChangeRequest(uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits, uint32_t *piDisplay); 1467 1453 VBGLR3DECL(int) VbglR3DisplayChangeWaitEvent(uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits, uint32_t *piDisplay); 1468 1454 VBGLR3DECL(bool) VbglR3HostLikesVideoMode(uint32_t cx, uint32_t cy, uint32_t cBits); 1469 VBGLR3DECL(int) VbglR3ReportMaxGuestResolution(uint32_t cx, uint32_t cy);1470 1455 /** @} */ 1471 1456
Note:
See TracChangeset
for help on using the changeset viewer.