Changeset 3526 in vbox
- Timestamp:
- Jul 10, 2007 1:18:54 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22750
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdm.h
r3525 r3526 654 654 655 655 656 /**657 * Display rectangle658 */659 typedef struct PDMIDISPLAYRECT660 {661 int32_t x;662 int32_t y;663 uint32_t cx;664 uint32_t cy;665 } PDMIDISPLAYRECT, *PPDMIDISPLAYRECT;666 667 656 668 657 /** Pointer to a display port interface. */ … … 795 784 * @thread The emulation thread. 796 785 */ 797 DECLR3CALLBACKMEMBER(int, pfnSetVisibleRegion,(PPDMIDISPLAYPORT pInterface, uint32_t cRect, P PDMIDISPLAYRECT pRect));786 DECLR3CALLBACKMEMBER(int, pfnSetVisibleRegion,(PPDMIDISPLAYPORT pInterface, uint32_t cRect, PRTRECT pRect)); 798 787 799 788 /** … … 806 795 * @thread The emulation thread. 807 796 */ 808 DECLR3CALLBACKMEMBER(int, pfnQueryVisibleRegion,(PPDMIDISPLAYPORT pInterface, uint32_t *pcRect, P PDMIDISPLAYRECT pRect));797 DECLR3CALLBACKMEMBER(int, pfnQueryVisibleRegion,(PPDMIDISPLAYPORT pInterface, uint32_t *pcRect, PRTRECT pRect)); 809 798 810 799 } PDMIDISPLAYPORT; -
trunk/include/iprt/types.h
r2981 r3526 1014 1014 1015 1015 1016 /** 1017 * Rectangle data type 1018 */ 1019 typedef struct RTRECT 1020 { 1021 int32_t x; 1022 int32_t y; 1023 uint32_t cx; 1024 uint32_t cy; 1025 } RTRECT, *PRTRECT; 1026 1016 1027 /** @} */ 1017 1028 -
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r3525 r3526 3743 3743 3744 3744 /** @copydoc PDMIDISPLAYPORT::pfnSetVisibleRegion */ 3745 static DECLCALLBACK(int) vgaPortSetVisibleRegion(PPDMIDISPLAYPORT pInterface, uint32_t cRect, P PDMIDISPLAYRECT pRect)3745 static DECLCALLBACK(int) vgaPortSetVisibleRegion(PPDMIDISPLAYPORT pInterface, uint32_t cRect, PRTRECT pRect) 3746 3746 { 3747 3747 PVGASTATE pData = IDISPLAYPORT_2_VGASTATE(pInterface); … … 3756 3756 3757 3757 /** @copydoc PDMIDISPLAYPORT::pfnQueryVisibleRegion */ 3758 static DECLCALLBACK(int) vgaPortQueryVisibleRegion(PPDMIDISPLAYPORT pInterface, uint32_t *pcRect, P PDMIDISPLAYRECT pRect)3758 static DECLCALLBACK(int) vgaPortQueryVisibleRegion(PPDMIDISPLAYPORT pInterface, uint32_t *pcRect, PRTRECT pRect) 3759 3759 { 3760 3760 PVGASTATE pData = IDISPLAYPORT_2_VGASTATE(pInterface);
Note:
See TracChangeset
for help on using the changeset viewer.