Changeset 14013
- Timestamp:
- 11/10/08 14:46:22 (2 months ago)
- Files:
-
- trunk/include/iprt/cdefs.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/include/iprt/cdefs.h
r13836 r14013 1003 1003 /** @def RT_LODWORD 1004 1004 * Gets the low dword (=uint32_t) of something. */ 1005 #define RT_LODWORD(a) ((a) & UINT32_C(0xffffffff))1005 #define RT_LODWORD(a) ( (uint32_t)(a) ) 1006 1006 1007 1007 /** @def RT_HIDWORD 1008 1008 * Gets the high dword (=uint32_t) of a 64-bit of something. */ 1009 #define RT_HIDWORD(a) ((a) >> 32)1009 #define RT_HIDWORD(a) ( (uint32_t)((a) >> 32) ) 1010 1010 1011 1011 /** @def RT_LOWORD

