Changeset 3530 in vbox
- Timestamp:
- Jul 10, 2007 2:42:23 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/types.h
r3526 r3530 1015 1015 1016 1016 /** 1017 * Rectangle data type 1017 * Rectangle data type. 1018 1018 */ 1019 1019 typedef struct RTRECT 1020 1020 { 1021 /** X coordinate. */ 1021 1022 int32_t x; 1023 /** Y coordinate. */ 1022 1024 int32_t y; 1025 /** Width. */ 1023 1026 uint32_t cx; 1027 /** Height. */ 1024 1028 uint32_t cy; 1025 } RTRECT, *PRTRECT; 1029 } RTRECT; 1030 /** Pointer to a rectangle. */ 1031 typedef RTRECT *PRTRECT; 1032 /** Pointer to a const rectangle. */ 1033 typedef const RTRECT *PCRTRECT; 1026 1034 1027 1035 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.