Changeset 13208 in vbox
- Timestamp:
- Oct 13, 2008 11:57:51 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 37755
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cdefs.h
r12676 r13208 1000 1000 #define RT_ABS(Value) ((Value) >= 0 ? (Value) : -(Value)) 1001 1001 1002 /** @def RT_LODWORD 1003 * Gets the low dword (=uint32_t) of something. */ 1004 #define RT_LODWORD(a) ((a) & UINT32_C(0xfffffffff)) 1005 1006 /** @def RT_HIDWORD 1007 * Gets the high dword (=uint32_t) og a 64-bit of something. */ 1008 #define RT_LODWORD(a) ((a) >> 32) 1009 1002 1010 /** @def RT_LOWORD 1003 1011 * Gets the low word (=uint16_t) of something. */ … … 1005 1013 1006 1014 /** @def RT_HIWORD 1007 * Gets the high word (=uint16_t) of a 32 1015 * Gets the high word (=uint16_t) of a 32-bit something. */ 1008 1016 #define RT_HIWORD(a) ((a) >> 16) 1009 1017 … … 1013 1021 1014 1022 /** @def RT_HIBYTE 1015 * Gets the low byte of a 16 1023 * Gets the low byte of a 16-bit something. */ 1016 1024 #define RT_HIBYTE(a) ((a) >> 8) 1017 1025
Note:
See TracChangeset
for help on using the changeset viewer.