Changeset 45968 in vbox for trunk/include
- Timestamp:
- May 9, 2013 5:12:13 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85620
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cdefs.h
r44528 r45968 1092 1092 */ 1093 1093 #define RT_STR_TUPLE(a_szConst) a_szConst, (sizeof(a_szConst) - 1) 1094 1095 1096 /** 1097 * Macro for using in switch statements that turns constants into strings. 1098 * 1099 * @param a_Const The constant (not string). 1100 */ 1101 #define RT_CASE_RET_STR(a_Const) case a_Const: return #a_Const 1094 1102 1095 1103 -
trunk/include/iprt/err.h
r45454 r45968 1480 1480 /** Encountered an unexpected attribute form. */ 1481 1481 #define VERR_DWARF_UNEXPECTED_FORM (-678) 1482 /** Unfinished code. */ 1483 #define VERR_DWARF_TODO (-679) 1484 /** Unknown location opcode. */ 1485 #define VERR_DWARF_UNKNOWN_LOC_OPCODE (-680) 1486 /** Expression stack overflow. */ 1487 #define VERR_DWARF_STACK_OVERFLOW (-681) 1488 /** Expression stack underflow. */ 1489 #define VERR_DWARF_STACK_UNDERFLOW (-682) 1490 /** Internal processing error in the DWARF code. */ 1491 #define VERR_DWARF_IPE (-683) 1482 1492 /** @} */ 1483 1493
Note:
See TracChangeset
for help on using the changeset viewer.