Changeset 34882 in vbox
- Timestamp:
- Dec 9, 2010 12:48:37 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/types.h
r34565 r34882 1743 1743 1744 1744 /** 1745 * A point in a two dimentional coordinate system. 1746 */ 1747 typedef struct RTPOINT 1748 { 1749 /** X coordinate. */ 1750 int32_t x; 1751 /** Y coordinate. */ 1752 int32_t y; 1753 } RTPOINT; 1754 /** Pointer to a point. */ 1755 typedef RTPOINT *PRTPOINT; 1756 /** Pointer to a const point. */ 1757 typedef const RTPOINT *PCRTPOINT; 1758 1759 1760 /** 1745 1761 * Rectangle data type, double point. 1746 1762 */ … … 1789 1805 1790 1806 /** 1807 * The size of a rectangle. 1808 */ 1809 typedef struct RTRECTSIZE 1810 { 1811 /** The width (along the x-axis). */ 1812 uint32_t cx; 1813 /** The height (along the y-axis). */ 1814 uint32_t cy; 1815 } RTRECTSIZE; 1816 /** Pointer to a rectangle size. */ 1817 typedef RTRECTSIZE *PRTRECTSIZE; 1818 /** Pointer to a const rectangle size. */ 1819 typedef const RTRECTSIZE *PCRTRECTSIZE; 1820 1821 1822 /** 1791 1823 * Ethernet MAC address. 1792 1824 *
Note:
See TracChangeset
for help on using the changeset viewer.