| | 1748 | /** @def AssertReleaseMsgRCBreak |
|---|
| | 1749 | * Asserts a iprt status code successful. |
|---|
| | 1750 | * |
|---|
| | 1751 | * On failure a custom message is printed, a breakpoint is hit, and finally |
|---|
| | 1752 | * breaking the current status if the breakpoint is showhow ignored. |
|---|
| | 1753 | * |
|---|
| | 1754 | * @param rc iprt status code. |
|---|
| | 1755 | * @param msg printf argument list (in parenthesis). |
|---|
| | 1756 | * @remark rc is references multiple times. |
|---|
| | 1757 | */ |
|---|
| | 1758 | #define AssertReleaseMsgRCBreak(rc, msg) AssertReleaseMsgBreak(RT_SUCCESS(rc), msg) |
|---|
| | 1759 | |
|---|
| 1761 | | /** @def AssertReleaseMsgRCBreakVoid |
|---|
| 1762 | | * Asserts a iprt status code successful. |
|---|
| 1763 | | * |
|---|
| 1764 | | * On failure a custom message is printed, a breakpoint is hit, and finally |
|---|
| 1765 | | * breaking the current status if the breakpoint is showhow ignored. |
|---|
| 1766 | | * |
|---|
| 1767 | | * @param rc iprt status code. |
|---|
| 1768 | | * @param msg printf argument list (in parenthesis). |
|---|
| 1769 | | * @remark rc is references multiple times. |
|---|
| 1770 | | * @todo Rename to AssertReleaseMsgRCBreak. |
|---|
| 1771 | | */ |
|---|
| 1772 | | #define AssertReleaseMsgRCBreakVoid(rc, msg) AssertReleaseMsgBreak(RT_SUCCESS(rc), msg) |
|---|
| 1773 | | |
|---|