Changeset 34541 in vbox
- Timestamp:
- Nov 30, 2010 10:31:58 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/types.h
r34381 r34541 1743 1743 1744 1744 /** 1745 * Rectangle data type .1745 * Rectangle data type, double point. 1746 1746 */ 1747 1747 typedef struct RTRECT … … 1756 1756 int32_t yBottom; 1757 1757 } RTRECT; 1758 /** Pointer to a rectangle. */1758 /** Pointer to a double point rectangle. */ 1759 1759 typedef RTRECT *PRTRECT; 1760 /** Pointer to a const rectangle. */1760 /** Pointer to a const double point rectangle. */ 1761 1761 typedef const RTRECT *PCRTRECT; 1762 1763 1764 /** 1765 * Rectangle data type, point + size. 1766 */ 1767 typedef struct RTRECT2 1768 { 1769 /** X coordinate. 1770 * Unless stated otherwise, this is the top left corner. */ 1771 int32_t x; 1772 /** Y coordinate. 1773 * Unless stated otherwise, this is the top left corner. */ 1774 int32_t y; 1775 /** The width. 1776 * Unless stated otherwise, this is to the right of (x,y). */ 1777 uint32_t cx; 1778 /** The height. 1779 * Unless stated otherwise, this is down from (x,y). */ 1780 uint32_t cy; 1781 } RTRECT2; 1782 /** Pointer to a point + size rectangle. */ 1783 typedef RTRECT2 *PRTRECT2; 1784 /** Pointer to a const point + size rectangle. */ 1785 typedef const RTRECT2 *PCRTRECT2; 1762 1786 1763 1787
Note:
See TracChangeset
for help on using the changeset viewer.