Changeset 3549 in vbox
- Timestamp:
- Jul 11, 2007 1:14:21 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22784
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/types.h
r3530 r3549 1019 1019 typedef struct RTRECT 1020 1020 { 1021 /** X coordinate. */1022 int32_t x ;1023 /** Y coordinate. */1024 int32_t y ;1025 /** Width. */1026 uint32_t cx;1027 /** Height. */1028 uint32_t cy;1021 /** left X coordinate. */ 1022 int32_t xLeft; 1023 /** bottom Y coordinate. */ 1024 int32_t yBottom; 1025 /** right X coordinate. */ 1026 int32_t xRight; 1027 /** top Y coordinate. */ 1028 int32_t yTop; 1029 1029 } RTRECT; 1030 1030 /** Pointer to a rectangle. */
Note:
See TracChangeset
for help on using the changeset viewer.