Changeset 52178 in vbox for trunk/include/VBox
- Timestamp:
- Jul 24, 2014 8:19:25 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95228
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxGuestLib.h
r50561 r52178 485 485 bool *pfEnabled, bool fAck); 486 486 VBGLR3DECL(bool) VbglR3HostLikesVideoMode(uint32_t cx, uint32_t cy, uint32_t cBits); 487 VBGLR3DECL(int) VbglR3SaveVideoMode(const char *pszName, uint32_t cx, uint32_t cy, uint32_t cBits); 488 VBGLR3DECL(int) VbglR3RetrieveVideoMode(const char *pszName, uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits); 487 VBGLR3DECL(int) VbglR3SaveVideoMode(unsigned cScreen, unsigned cx, 488 unsigned cy, unsigned cBits, unsigned x, 489 unsigned y, bool fEnabled); 490 VBGLR3DECL(int) VbglR3RetrieveVideoMode(unsigned cScreen, unsigned *pcx, 491 unsigned *pcy, unsigned *pcBits, 492 unsigned *px, unsigned *py, 493 bool *pfEnabled); 489 494 /** @} */ 490 495 … … 751 756 uint32_t *pu32SizeDataReturned); 752 757 758 /** @name Mode hint storage 759 * @{ */ 760 VBGLR3DECL(int) VbglR3ReadVideoMode(unsigned cDisplay, unsigned *cx, 761 unsigned *cy, unsigned *cBPP, unsigned *x, 762 unsigned *y, unsigned *fEnabled); 763 VBGLR3DECL(int) VbglR3WriteVideoMode(unsigned cDisplay, unsigned cx, 764 unsigned cy, unsigned cBPP, unsigned x, 765 unsigned y, unsigned fEnabled); 766 /** @} */ 767 753 768 #endif /* IN_RING3 */ 754 769 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.